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

/openjdk7/hotspot/src/share/vm/utilities/
H A Dtaskqueue.hpp183 volatile Age _age; member in class:TaskQueueSuper
220 TaskQueueSuper() : _bottom(0), _age() {}
223 bool peek() const { return _bottom != _age.top(); }
230 return size(_bottom, _age.top());
234 return dirty_size(_bottom, _age.top());
239 _age.set(0);
262 using TaskQueueSuper<N, F>::_age;
375 Age tempAge = _age.cmpxchg(newAge, oldAge);
378 assert(dirty_size(localBot, _age.top()) != N - 1, "sanity");
386 _age
[all...]

Completed in 32 milliseconds