Reputation: 3895
CpupSyscallStub is what I See for all threads, in Windbg I can switch to 32-bit mode and get the real threads.
How do I do this in VS2010?
Upvotes: 0
Views: 1555
Reputation: 8007
Try using ProcDump. It captures 32-bit processes as 32-bit dumps by default.
Upvotes: 0
Reputation: 21
I noticed that a 32-bit dump can also be created with the 32-bit task manager ("%systemroot%\syswow64\taskmgr.exe"). Close the existing 64-bit taskmgr first.
Upvotes: 2
Reputation: 1139
How did you take this process dump? via Task Manager (taskmgr)?
If so, it is a 64-bit dump of a 32-bit process and these cannot be debugged with Visual Studio 2010, and there is no way to switch the architecture.
Try retaking the dump using Visual Studio or WinDbg or ADPlus.
You can read more about types of dumps, etc. @ MiniDumpWriteDump (http://msdn.microsoft.com/en-us/library/ms680360(VS.85).aspx)
Upvotes: 1