5

How can I retrieve a thread dump from a running Java process on OpenVMS? The process is not JMX-enabled. I am looking for something similar to kill -QUIT on Unix or Ctrl+Break on Windows.

EDIT: I found my answer here: http://h18012.www1.hp.com/java/documentation/1.6.0/ivms/docs/user_guide.html#javaenable_sigquit_mailbox

Bill the Lizard
  • 398,270
  • 210
  • 566
  • 880
claes
  • 51
  • 2

1 Answers1

1

Exerpret from open vms user guide

  • define JAVA$ENABLE_SIGQUIT_CTRLC true : This will enable terminal programs to receive QUIT signal and dump trace to terminal
  • define JAVA$ENABLE_SIGQUIT_MAILBOX true : This will enable non terminal programs to dump trace to mailbox created by the JVM
Prashant Bhate
  • 10,907
  • 7
  • 47
  • 82