8212612: Add documentation about Arguments::_exit_hook

Reviewed-by: hseigel, dlong, dholmes
This commit is contained in:
Ioi Lam 2018-10-17 21:51:00 -07:00
parent d63acb557c
commit c86ba29693
3 changed files with 19 additions and 2 deletions

View file

@ -106,6 +106,9 @@ char* Arguments::SharedArchivePath = NULL;
AgentLibraryList Arguments::_libraryList;
AgentLibraryList Arguments::_agentList;
// These are not set by the JDK's built-in launchers, but they can be set by
// programs that embed the JVM using JNI_CreateJavaVM. See comments around
// JavaVMOption in jni.h.
abort_hook_t Arguments::_abort_hook = NULL;
exit_hook_t Arguments::_exit_hook = NULL;
vfprintf_hook_t Arguments::_vfprintf_hook = NULL;