Shintaro
Well-known member
I was hoping that someone could explain the "Processes and Threads" tree in Windbg.
000:f0f0f0f0 ntkrnlmp.exe
000 : 1
000 : 2
000 : 3
000 : 4
000 : 5
000 : 6
What I *think* I understand is that ntkrnlmp.exe is the x86 Arch with 4 Gb of physical memory or less.
The highlighted (bold) is the process (ntkrnlmp.exe) and the current thread (000 : 1). And that the only process / thread in the mini dump is the one the system thought caused the crash.
So my questions are:
Does that mean that there were 6 threads executing at the time of the crash for that process?
How does it, if at all, relate to the !thread command?
000:f0f0f0f0 ntkrnlmp.exe
000 : 1
000 : 2
000 : 3
000 : 4
000 : 5
000 : 6
What I *think* I understand is that ntkrnlmp.exe is the x86 Arch with 4 Gb of physical memory or less.
The highlighted (bold) is the process (ntkrnlmp.exe) and the current thread (000 : 1). And that the only process / thread in the mini dump is the one the system thought caused the crash.
So my questions are:
Does that mean that there were 6 threads executing at the time of the crash for that process?
How does it, if at all, relate to the !thread command?
Code:
[FONT=Lucida Console]0: kd> !thread
GetPointerFromAddress: unable to read from fffff800030c4000
THREAD fffffa8004f21040 Cid 0004.002c Teb: 0000000000000000 Win32Thread: 0000000000000000 RUNNING on processor 0
Not impersonating
GetUlongFromAddress: unable to read from fffff80003003ba4
Owning Process fffffa8004ea6b30 Image: System
Attached Process N/A Image: N/A
fffff78000000000: Unable to get shared data
Wait Start TickCount 93973
Context Switch Count 31842
ReadMemory error: Cannot get nt!KeMaximumIncrement value.
UserTime 00:00:00.000
KernelTime 00:00:00.000
Win32 Start Address nt!ExpWorkerThread (0xfffff80002e9e740)
Stack Init fffff8800335bdb0 Current fffff8800335b440
Base fffff8800335c000 Limit fffff88003356000 Call 0
Priority 13 BasePriority 12 UnusualBoost 0 ForegroundBoost 0 IoPriority 2 PagePriority 5
Child-SP RetAddr : Args to Child : Call Site
fffff800`00ba2ae8 fffff800`02e94769 : 00000000`0000000a 00000000`0000000b 00000000`00000002 00000000`00000000 : nt!KeBugCheckEx
fffff800`00ba2af0 fffff800`02e933e0 : 00000000`00000002 fffff800`02ec0180 00000000`00000000 00000000`00000000 : nt!KiBugCheckDispatch+0x69
fffff800`00ba2c30 fffff880`0410ae79 : fffffa80`079de000 00000000`00000000 fffff800`00ba2e20 fffff980`1f598ee0 : nt!KiPageFault+0x260 (TrapFrame @ fffff800`00ba2c30)
fffff800`00ba2dc0 fffffa80`079de000 : 00000000`00000000 fffff800`00ba2e20 fffff980`1f598ee0 00000000`00000000 : nusb3xhc+0xde79
fffff800`00ba2dc8 00000000`00000000 : fffff800`00ba2e20 fffff980`1f598ee0 00000000`00000000 ffffe4fd`6df084c0 : 0xfffffa80`079de000[/FONT]
Last edited by a moderator: