Searched refs:_vm_thread (Results 1 - 7 of 7) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsTasks.hpp86 VMThread* _vm_thread; member in class:ThreadRootsTask
88 ThreadRootsTask(JavaThread* root) : _java_thread(root), _vm_thread(NULL) {}
89 ThreadRootsTask(VMThread* root) : _java_thread(NULL), _vm_thread(root) {}
H A DpcTasks.hpp71 VMThread* _vm_thread; member in class:ThreadRootsMarkingTask
73 ThreadRootsMarkingTask(JavaThread* root) : _java_thread(root), _vm_thread(NULL) {}
74 ThreadRootsMarkingTask(VMThread* root) : _java_thread(NULL), _vm_thread(root) {}
H A DpsTasks.cpp122 if (_vm_thread != NULL)
123 _vm_thread->oops_do(&roots_closure, &roots_in_blobs);
H A DpcTasks.cpp63 if (_vm_thread != NULL)
64 _vm_thread->oops_do(&mark_and_push_closure, &mark_and_push_in_blobs);
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmThread.hpp137 static VMThread* vm_thread() { return _vm_thread; }
163 static VMThread* _vm_thread; member in class:VMThread
H A Dsafepoint.hpp69 _vm_thread = 1, enumerator in enum:SafepointSynchronize::SafepointingThread
H A DvmThread.cpp223 VMThread* VMThread::_vm_thread = NULL; member in class:VMThread
231 _vm_thread = new VMThread();
254 if (_vm_thread != NULL) {
255 delete _vm_thread;
256 _vm_thread = NULL; // VM thread is gone

Completed in 83 milliseconds