I'm learning how to use procdump64 to automatically create a dump file when a program hangs.
I created a simple Winforms application which will get into a deadlock when a button is hit.
I issued a command like this:
C:\Users\vl\source\repos\MyApp\MyApp\bin\Release\procdump64 -h Myapp.exe
I can see procdump started monitoring. I then hit the button and my form became not responsive anymore. However, there is no dump file generated even after a long time.
What could be the problem?
Thank you!