Windows蓝屏信息结构
Windows蓝屏时会出现其停止码,如下图所示:
而使用Windbg命令!analyze -show
分析dump文件时,也会首先出现停止码:
DRIVER_POWER_STATE_FAILURE (9f)
A driver has failed to complete a power IRP within a specific time.
Arguments:
Arg1: 0000000000000004, The power transition timed out waiting to synchronize with the Pnp
subsystem.
Arg2: 000000000000012c, Timeout in seconds.
Arg3: ffffd2841d49f040, The thread currently holding on to the Pnp lock.
Arg4: fffff803423b3800, nt!TRIAGE_9F_PNP on Win7 and higher
Windows蓝屏信息结构
Windows蓝屏信息结构由2部分组成:
- 第一部分为:停止码,代表引起错误的原因.如DRIVER_POWER_STATE_FAILURE (9f)。
- 第二部分为:四个参数(Arg1 - Arg4),根据停止码的不同,解释不同。