Searched refs:ExceptionMark (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/utilities/
H A Dexceptions.hpp286 // ExceptionMark is a stack-allocated helper class for local exception handling.
289 class ExceptionMark { class
294 ExceptionMark(Thread*& thread);
295 ~ExceptionMark();
308 #define EXCEPTION_MARK Thread* THREAD; ExceptionMark __em(THREAD);
H A Dexceptions.cpp404 // Implementation of ExceptionMark
406 ExceptionMark::ExceptionMark(Thread*& thread) { function in class:ExceptionMark
413 fatal("ExceptionMark constructor expects no pending exceptions");
418 ExceptionMark::~ExceptionMark() {
424 fatal("ExceptionMark destructor expects no pending exceptions");

Completed in 31 milliseconds