I would like to debug and identify a memory leak in one/some of the threads in a C++ process. I would like to get a thread dump of the process once the memory usage is very high.
I know for java the following commands work, 'kill -3 ' [linux] or 'sendsignal.exe ' (http://www.latenighthacking.com/projects/2003/sendSignal/)
Is there any way to a get thread dump for C++ process on Windows.
can this thread be related: How to programmatically cause a core dump in C/C++
Thank you.