< prev index next >

src/hotspot/share/runtime/vm_operations.hpp

Print this page
rev 49294 : imported patch 8199813
rev 49295 : Move IdealGraphPrinter::clean_up() call so VM_Exit::set_shutdown_thread() can be removed.

*** 465,477 **** VM_Exit(int exit_code) { _exit_code = exit_code; } static int wait_for_threads_in_native_to_block(); static int set_vm_exited(); - static void set_shutdown_thread(Thread *t) { _shutdown_thread = t; } - static Thread * shutdown_thread() { return _shutdown_thread; } static bool vm_exited() { return _vm_exited; } static void block_if_vm_exited() { if (_vm_exited) { wait_if_vm_exited(); } } --- 465,476 ---- VM_Exit(int exit_code) { _exit_code = exit_code; } static int wait_for_threads_in_native_to_block(); static int set_vm_exited(); static bool vm_exited() { return _vm_exited; } + static Thread * shutdown_thread() { return _shutdown_thread; } static void block_if_vm_exited() { if (_vm_exited) { wait_if_vm_exited(); } }
< prev index next >