< prev index next >

src/share/vm/runtime/vmThread.hpp

Print this page

        

*** 102,111 **** --- 102,117 ---- void evaluate_operation(VM_Operation* op); public: // Constructor VMThread(); + // No destruction allowed + ~VMThread() { + guarantee(false, "VMThread deletion must fix the race with VM termination"); + } + + // Tester bool is_VM_thread() const { return true; } bool is_GC_thread() const { return true; } // The ever running loop for the VMThread
< prev index next >