windbg - How to get handle to an event that may cause my application to go in hang state -
I am analyzing a dump file for an application, an interesting line from the stack trace.
0bc2f3e4 75a8bd1e 0bc2f298 0bc2f30c 00000001 ntdll! Kifst SystemClercet 0bc2f32a 6a393c42 00000001 7ffdf000 00000001 Kernel 32! WaitingFormmultibleObjectX + 0x8e Looking at the details in MSDN, the second parameter is CONFUSH Handle * LPHDLL This is something I should be able to do! To handle 7ffdf000 to find out what events it is waiting for, but when I do this, I type
type error type of the following
Any ideas about what I am doing wrong or any tips about getting more details on the causes of Hog?
The second parameter is an indicator for the array of handles. In your case, because the size of the array is 1, you should be able to handle using the command ! Poi 7ffdf000
Comments
Post a Comment