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

/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepThread.hpp82 static volatile jint _pending_decrements; // decrements to _pending_yields member in class:ConcurrentMarkSweepThread
158 // _pending_yields and _pending_decrements. An asynchr requesting
162 // _pending_yields and _pending_decrements by the value seen in
163 // _pending_decrements before the decrement.
170 // a second counter _pending_decrements that only holds the async requests,
175 // Note that, while "_pending_yields >= _pending_decrements" is an invariant,
195 Atomic::inc(&_pending_decrements);
196 assert(_pending_decrements >= 0, "can't be negative");
199 jint decrement = _pending_decrements;
202 // Order important to preserve: _pending_yields >= _pending_decrements
[all...]
H A DconcurrentMarkSweepThread.cpp52 volatile jint ConcurrentMarkSweepThread::_pending_decrements = 0; member in class:ConcurrentMarkSweepThread

Completed in 30 milliseconds