comparison src/share/vm/runtime/park.hpp @ 1972:f95d63e2154a

6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
author stefank
date Tue, 23 Nov 2010 13:22:55 -0800
parents fa83ab460c54
children 9758d9f36299
comparison
equal deleted inserted replaced
1971:e33f46fc48ed 1972:f95d63e2154a
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 * 22 *
23 */ 23 */
24
25 #ifndef SHARE_VM_RUNTIME_PARK_HPP
26 #define SHARE_VM_RUNTIME_PARK_HPP
27
28 #include "utilities/debug.hpp"
29 #include "utilities/globalDefinitions.hpp"
24 /* 30 /*
25 * Per-thread blocking support for JSR166. See the Java-level 31 * Per-thread blocking support for JSR166. See the Java-level
26 * Documentation for rationale. Basically, park acts like wait, unpark 32 * Documentation for rationale. Basically, park acts like wait, unpark
27 * like notify. 33 * like notify.
28 * 34 *
165 171
166 public: 172 public:
167 static ParkEvent * Allocate (Thread * t) ; 173 static ParkEvent * Allocate (Thread * t) ;
168 static void Release (ParkEvent * e) ; 174 static void Release (ParkEvent * e) ;
169 } ; 175 } ;
176
177 #endif // SHARE_VM_RUNTIME_PARK_HPP