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

/openjdk7/hotspot/src/share/vm/utilities/
H A Dexceptions.hpp56 // The ThreadShadow class is a helper class to access the _pending_exception
60 class ThreadShadow: public CHeapObj<mtThread> { class in inherits:CHeapObj
70 // We need ThreadShadow to have a vtable, even in product builds,
72 // Some C++ compilers are so "clever" that they put the ThreadShadow
74 // notice that Thread has a vtable but ThreadShadow does not.
84 static ByteSize pending_exception_offset() { return byte_offset_of(ThreadShadow, _pending_exception); }
92 ThreadShadow() : _pending_exception(NULL), function in class:ThreadShadow
193 #define PENDING_EXCEPTION (((ThreadShadow*)THREAD)->pending_exception())
194 #define HAS_PENDING_EXCEPTION (((ThreadShadow*)THREAD)->has_pending_exception())
195 #define CLEAR_PENDING_EXCEPTION (((ThreadShadow*)THREA
[all...]

Completed in 85 milliseconds