src/hotspot/share/runtime/thread.inline.hpp
changeset 54631 3a3e4e473622
parent 54495 941db9c0b5b5
child 59247 56bf71d64d51
equal deleted inserted replaced
54630:04b17e84c87d 54631:3a3e4e473622
   106 }
   106 }
   107 inline void JavaThread::clear_external_suspend() {
   107 inline void JavaThread::clear_external_suspend() {
   108   clear_suspend_flag(_external_suspend);
   108   clear_suspend_flag(_external_suspend);
   109 }
   109 }
   110 
   110 
   111 inline void JavaThread::set_deopt_suspend() {
       
   112   set_suspend_flag(_deopt_suspend);
       
   113 }
       
   114 inline void JavaThread::clear_deopt_suspend() {
       
   115   clear_suspend_flag(_deopt_suspend);
       
   116 }
       
   117 
       
   118 inline void JavaThread::set_pending_async_exception(oop e) {
   111 inline void JavaThread::set_pending_async_exception(oop e) {
   119   _pending_async_exception = e;
   112   _pending_async_exception = e;
   120   _special_runtime_exit_condition = _async_exception;
   113   _special_runtime_exit_condition = _async_exception;
   121   set_has_async_exception();
   114   set_has_async_exception();
   122 }
   115 }