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

/openjdk7/hotspot/src/share/vm/runtime/
H A Dvm_operations.hpp100 class VM_Operation: public CHeapObj<mtInternal> { class in inherits:CHeapObj
118 VM_Operation* _next;
119 VM_Operation* _prev;
125 VM_Operation() { _calling_thread = NULL; _next = NULL; _prev = NULL; } function in class:VM_Operation
126 virtual ~VM_Operation() {}
140 // If the thread invoking VMThread::execute((VM_Operation*) is a JavaThread,
154 VM_Operation *next() const { return _next; }
155 VM_Operation *prev() const { return _prev; }
156 void set_next(VM_Operation *next) { _next = next; }
157 void set_prev(VM_Operation *pre
[all...]

Completed in 25 milliseconds