Searched defs:_WaitSet (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A Dmutex.hpp128 volatile intptr_t _WaitLock [1] ; // Protects _WaitSet
129 ParkEvent * volatile _WaitSet ; // LL of ParkEvents member in class:Monitor
H A DobjectMonitor.hpp99 static int WaitSet_offset_in_bytes() { return offset_of(ObjectMonitor, _WaitSet) ; }
117 // TODO-FIXME: assert _WaitSet != null implies _count > 0
134 ObjectWaiter* first_waiter() { return _WaitSet; }
147 _WaitSet = NULL;
171 // _recursions == 0 _WaitSet == NULL
176 _WaitSet = NULL ;
277 // _count is approximately |_WaitSet| + |_EntryList|
282 ObjectWaiter * volatile _WaitSet; // LL of threads wait()ing on the monitor member in class:ObjectMonitor

Completed in 30 milliseconds