Searched refs:_WaitSetLock (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A DobjectMonitor.hpp148 _WaitSetLock = 0 ;
284 volatile int _WaitSetLock; // protects Wait Queue - simple spinlock member in class:ObjectMonitor
H A DobjectMonitor.cpp1487 // _WaitSetLock protects the wait queue. Normally the wait queue is accessed only
1492 Thread::SpinAcquire (&_WaitSetLock, "WaitSet - add") ;
1494 Thread::SpinRelease (&_WaitSetLock) ;
1560 // We use double-checked locking to avoid grabbing _WaitSetLock
1573 Thread::SpinAcquire (&_WaitSetLock, "WaitSet - unlink") ;
1579 Thread::SpinRelease (&_WaitSetLock) ;
1676 Thread::SpinAcquire (&_WaitSetLock, "WaitSet - notify") ;
1768 // _WaitSetLock protects the wait queue, not the EntryList. We could
1770 // protected by _WaitSetLock. In practice that's not useful. With the
1772 // is the only thread that grabs _WaitSetLock
[all...]

Completed in 36 milliseconds