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

/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DMakeNotEntrantEvent.java30 private final boolean zombie; field in class:MakeNotEntrantEvent
36 zombie = z;
53 return zombie;
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DWindowsSelectorImpl.java410 private volatile boolean zombie; field in class:WindowsSelectorImpl.SelectThread
419 zombie = true;
422 return zombie;
/openjdk7/hotspot/src/share/vm/code/
H A Dnmethod.hpp182 unsigned char _state; // {alive, not_entrant, zombie, unloaded}
190 zombie = 2, enumerator in enum:nmethod::__anon200
197 // and is not made into a zombie. However, once the nmethod is made into
198 // a zombie, it will be locked one final time if CompiledMethodUnload
398 bool is_zombie() const { return _state == zombie; }
406 bool make_zombie() { return make_not_entrant_or_zombie(zombie); }
532 // it is a zombie, since the VM or the ServiceThread might still be
696 // be made into a zombie, even if it is a not_entrant method. After the
697 // nmethod becomes a zombie, if CompiledMethodUnload event processing

Completed in 35 milliseconds