blue screen (memory dump) on restart
So it looks like object dock is cause some kind of crash when I restart. Strangely enough, it's only if the computer sits for a while. If it crashes, loads to windows, and then I try to restart again, it'll restart just fine. If I wait a while (I don't have exact numbers), I'll get the memory dump again.
Any help would be appreciated.
Here's the the bug check from the crash dump:
******************************************************************************** ** Bugcheck Analysis ** ********************************************************************************
Use !analyze -v to get detailed debugging information.
BugCheck 7F, {8, 80050031, 6f8, fffff80002bc4143}
Probably caused by : ntkrnlmp.exe ( nt!KiDoubleFaultAbort+b2 )
Followup: MachineOwner---------
2: kd> !analyze -v
******************************************************************************** ** Bugcheck Analysis ** ********************************************************************************
UNEXPECTED_KERNEL_MODE_TRAP (7f)This means a trap occurred in kernel mode, and it's a trap of a kindthat the kernel isn't allowed to have/catch (bound trap) or thatis always instant death (double fault). The first number in thebugcheck params is the number of the trap (8 = double fault, etc)Consult an Intel x86 family manual to learn more about what thesetraps are. Here is a *portion* of those codes:If kv shows a taskGate use .tss on the part before the colon, then kv.Else if kv shows a trapframe use .trap on that valueElse .trap on the appropriate frame will show where the trap was taken (on x86, this will be the ebp that goes with the procedure KiTrap)Endifkb will then show the corrected stack.Arguments:Arg1: 0000000000000008, EXCEPTION_DOUBLE_FAULTArg2: 0000000080050031Arg3: 00000000000006f8Arg4: fffff80002bc4143
Debugging Details:
------------------
BUGCHECK_STR: 0x7f_8
CUSTOMER_CRASH_COUNT: 1
DEFAULT_BUCKET_ID: VISTA_DRIVER_FAULT
PROCESS_NAME: ObjectDockTray
CURRENT_IRQL: 0
LAST_CONTROL_TRANSFER: from fffff80002a8eca9 to fffff80002a8f740
STACK_TEXT: fffff880`02f69ce8 fffff800`02a8eca9 : 00000000`0000007f 00000000`00000008 00000000`80050031 00000000`000006f8 : nt!KeBugCheckExfffff880`02f69cf0 fffff800`02a8d172 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiBugCheckDispatch+0x69fffff880`02f69e30 fffff800`02bc4143 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiDoubleFaultAbort+0xb2fffff880`095ceff0 00000000`00000000 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!ExFreePoolWithTag+0x93
STACK_COMMAND: kb
FOLLOWUP_IP: nt!KiDoubleFaultAbort+b2fffff800`02a8d172 90 nop
SYMBOL_STACK_INDEX: 2
SYMBOL_NAME: nt!KiDoubleFaultAbort+b2
FOLLOWUP_NAME: MachineOwner
MODULE_NAME: nt
IMAGE_NAME: ntkrnlmp.exe
DEBUG_FLR_IMAGE_TIMESTAMP: 4c1c44a9
FAILURE_BUCKET_ID: X64_0x7f_8_nt!KiDoubleFaultAbort+b2
BUCKET_ID: X64_0x7f_8_nt!KiDoubleFaultAbort+b2
Followup: MachineOwner
---------