阅读:1009回复:1
我这个是什么错误呢?
我的驱动在用softice调试时是完全没有问题的,可是连着运行时就出现兰屏错误提示如下:
0x0000001E(0x80000003,0x8045cbdf,0x00000002,0xED423C78) Address 8045CBDF base at 80400000, DataStamp 3ee650b3-ntoskrnl.exe 我弄不明白我这是什么错误?我觉得应该是我的驱动程序结束的不对。我是每来一次中断做一次dma传输。 |
|
沙发#
发布于:2004-10-21 12:40
看看MSDN/DDK吧
Bug Check 0x1E: KMODE_EXCEPTION_NOT_HANDLED The KMODE_EXCEPTION_NOT_HANDLED bug check has value 0x0000001E. This signals that a kernel-mode program generated an exception which the error handler did not catch. Parameters The following parameters are displayed on the blue screen. Parameter Description 1 Exception code 2 Address where exception occurred 3 Parameter 0 of exception 4 Parameter 1 of exception Interpretation To interpret this error message, it is necessary to identify which exception was generated. Common exception codes include: 0x80000003: STATUS_BREAKPOINT. A breakpoint or ASSERT was encountered when no kernel debugger was attached to the system. |
|
|