I am working on a Java application that runs on my console which executes another Java process. I am trying to get the thread/heap dump of the child process.
On Unix, I can use the command
kill -3 <pid>
but on the Windows AFAIK only option to get the thread dump is
Ctrl-Break in your console. But it gives me a dump of a parent process, not a child.
Is there any way to get this heap dump?