Error Codes explanation please

  • Thread starter Thread starter m^
  • Start date Start date
M

m^

Hello.

An explanation of the following error codes appreciated.

"A problem has been detected and Windows has been shut down to prevent
damage to your computer.

Techinical information:
***STOP: 0x0000008E (0x0000005, 0xF3180935, 0xF3180834, 0x00000000) "

Also where can I find a list of all of Windows erroe codes?

Regards,

m^
 
TROUBLESHOOTING STOP ERROR MESSAGES
http://aumha.org/win5/kbestop.php

[Courtesy of James A. Eshelman, MS-MVP]

Troubleshooting Stop Errors
http://www2.cajun.net/~theriots/blk/win_xp_stop.htm

[Courtesy of Kelly Theriot, MS-MVP]

--
Carey Frisch
Microsoft MVP
Windows XP - Shell/User

Be Smart! Protect your PC!
http://www.microsoft.com/security/protect/

-----------------------------------------------------------------------------------------


| Hello.
|
| An explanation of the following error codes appreciated.
|
| "A problem has been detected and Windows has been shut down to prevent
| damage to your computer.
|
| Techinical information:
| ***STOP: 0x0000008E (0x0000005, 0xF3180935, 0xF3180834, 0x00000000) "
|
| Also where can I find a list of all of Windows erroe codes?
|
| Regards,
|
| m^
 
KERNEL_MODE_EXCEPTION_NOT_HANDLED (0x8E)
PARAMETERS
1 - The exception code that was not handled
2 - The address that the exception occurred at
3 - Trap Frame

DESCRIPTION
This is a very common bugcheck. Usually the exception address pinpoints
the driver/function that caused the problem. Always note this address
as well as the link date of the driver/image that contains this address.
Some common problems are exception code 0x80000003. This means a hard
coded breakpoint or assertion was hit, but this system was booted
/NODEBUG. This is not supposed to happen as developers should never have
hardcoded breakpoints in retail code, but ...
If this happens, make sure a debugger gets connected, and the
system is booted /DEBUG. This will let us see why this breakpoint is
happening.

An exception code of 0x80000002 (STATUS_DATATYPE_MISALIGNMENT) indicates
that an unaligned data reference was encountered. The trap frame will
supply additional information.

Joshua Smith
DirectInput and OpenGL Test Labs
Microsoft
 
Thank you, Joshua. :)

Joshua Smith said:
KERNEL_MODE_EXCEPTION_NOT_HANDLED (0x8E)
PARAMETERS
1 - The exception code that was not handled
2 - The address that the exception occurred at
3 - Trap Frame

DESCRIPTION
This is a very common bugcheck. Usually the exception address pinpoints
the driver/function that caused the problem. Always note this address
as well as the link date of the driver/image that contains this address.
Some common problems are exception code 0x80000003. This means a hard
coded breakpoint or assertion was hit, but this system was booted
/NODEBUG. This is not supposed to happen as developers should never have
hardcoded breakpoints in retail code, but ...
If this happens, make sure a debugger gets connected, and the
system is booted /DEBUG. This will let us see why this breakpoint is
happening.

An exception code of 0x80000002 (STATUS_DATATYPE_MISALIGNMENT) indicates
that an unaligned data reference was encountered. The trap frame will
supply additional information.

Joshua Smith
DirectInput and OpenGL Test Labs
Microsoft
-----

Get Secure! www.microsoft.com/security

This posting is provided "AS IS" with no warranties, and confers no rights
 
You can find a list of error codes for Wiindows XP here:

http://www.microsoft.com/resources/documentation/Windows/XP
/all/reskit/en-us/Default.asp?
url=/resources/documentation/windows/xp/all/reskit/en-
us/prjk_dec_lgsc.asp

-----Original Message-----
KERNEL_MODE_EXCEPTION_NOT_HANDLED (0x8E)
PARAMETERS
1 - The exception code that was not handled
2 - The address that the exception occurred at
3 - Trap Frame

DESCRIPTION
This is a very common bugcheck. Usually the exception address pinpoints
the driver/function that caused the problem. Always note this address
as well as the link date of the driver/image that contains this address.
Some common problems are exception code 0x80000003. This means a hard
coded breakpoint or assertion was hit, but this system was booted
/NODEBUG. This is not supposed to happen as developers should never have
hardcoded breakpoints in retail code, but ...
If this happens, make sure a debugger gets connected, and the
system is booted /DEBUG. This will let us see why this breakpoint is
happening.

An exception code of 0x80000002
(STATUS_DATATYPE_MISALIGNMENT) indicates
 
Back
Top