diff src/share/vm/services/attachListener.hpp @ 14186:23c27f9ae1e8

6730115: Fastdebug VM crashes with "ExceptionMark destructor expects no pending exceptions" error Summary: Fixed incompatible uses of EXCEPTION_MARK and CHECK macros in AttachListener::init(), handle exception locally. Reviewed-by: minqi, coleenp
author zgu
date Tue, 31 Dec 2013 08:58:08 -0500
parents 2e8f19c2feef
children 4ca6dc0799b6
line wrap: on
line diff
--- a/src/share/vm/services/attachListener.hpp	Mon Dec 23 18:44:59 2013 -0500
+++ b/src/share/vm/services/attachListener.hpp	Tue Dec 31 08:58:08 2013 -0500
@@ -94,6 +94,9 @@
   // dequeue the next operation
   static AttachOperation* dequeue();
 #endif // !INCLUDE_SERVICES
+
+ private:
+  static bool has_init_error(TRAPS);
 };
 
 #if INCLUDE_SERVICES