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

/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepThread.cpp48 bool ConcurrentMarkSweepThread::_should_terminate = false; member in class:ConcurrentMarkSweepThread
124 !_should_terminate) {
133 while (_slt == NULL && !_should_terminate) {
140 while (!_should_terminate) {
142 if (_should_terminate) break;
147 assert(_should_terminate, "just checking");
177 if (!_should_terminate) {
195 _should_terminate = true;
309 if (_should_terminate || _collector->_full_gc_requested) {
320 while (!_should_terminate) {
[all...]
H A DconcurrentMarkSweepThread.hpp61 static bool _should_terminate; member in class:ConcurrentMarkSweepThread
120 static bool should_terminate() { return _should_terminate; }
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DconcurrentGCThread.hpp82 bool _should_terminate; member in class:ConcurrentGCThread
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmThread.hpp108 static bool _should_terminate; member in class:VMThread
127 static bool should_terminate() { return _should_terminate; }
H A DvmThread.cpp220 bool VMThread::_should_terminate = false; member in class:VMThread
341 _should_terminate = true;
H A Dthread.cpp1201 volatile bool WatcherThread::_should_terminate = false; member in class:WatcherThread
1251 if (timedout || _should_terminate) {
1276 while(!_should_terminate) {
1330 _should_terminate = false;
1344 _should_terminate = true;
H A Dthread.hpp715 volatile static bool _should_terminate; // updated without holding lock member in class:WatcherThread

Completed in 137 milliseconds