Dumping a thread on OpenVMS

How can I get a thread dump from a running Java process on OpenVMS? This process does not support JMX. I am looking for something similar kill -QUITto Unix or Ctrl+BreakWindows.

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

+5
source share
1 answer

Extract from open vms user manual

  • define JAVA $ ENABLE_SIGQUIT_CTRLC true : this will allow terminal programs to receive a QUIT signal and a dump trace to the terminal
  • JAVA $ENABLE_SIGQUIT_MAILBOX true. , JVM
+1

All Articles