Reset thread with .net 4

Good afternoon. I am trying to get a thread dump (stack trace and state for each working thread) in a .NET.NET Framework application.

Managed by Stack Explorer does not do the trick for .net 4 I suppose (I can not find information about this), it only shows .net 3.5 and down applications.

The process explorer dumps the stream, but with start addresses, not stack traces, which is not very useful.

Any ideas?

+6
source share
1 answer

Are you on Vista or Windows7?

Are you 32 or 64 bit?

Right-click the process in the task manager and select Create Dump File. Then you can drag the DMP file into Visual Studio (provided that it will be a .NET4 process) and view the required information. see here for more information.

shameless plug-in. See also my post on all the problems that may arise when receiving and analyzing a dump file.

+8
source

Source: https://habr.com/ru/post/885648/


All Articles