ThreadDumpPath support
The thread dump lists all threads in the Java process. If any of the distributed GC options are enabled, GC threads are converted into processes. Hence, the GC threads are prefixed with
* to indicate that it is a process if the application enables distributed GC.
The execution stack trace of all Java threads in a NSJ 11 process can be dumped by sending a SIGQUIT signal to the Java process using the following OSS command:
$ kill -QUIT <pid>
NOTE:
GC thread stack trace is not printed.
By default, the thread stack dump is written in text format on the
stdout.
NSJ 11 provides the ability to redirect this output to a user-defined file using the following Java command:
-XX:ThreadDumpPath=<path/filename>

