Windows error 0x000000A2, 162

Detailed Error Information

SIGNAL_PENDING[1]

MessageA signal is already pending.
Declared inwinerror.h

This appears to be a raw Win32 error. More information may be available in error 0x800700A2.

MEMORY_IMAGE_CORRUPT[2]

This is a Blue Screen of Death stop code. More information is available in the Knowledge Base article Bug Check 0xA2: MEMORY_IMAGE_CORRUPT.

HRESULT analysis[3]

This is probably not the correct interpretation of this error. The Win32 error above is more likely to indicate the actual problem.
FlagsSeveritySuccess

This code indicates success, rather than an error. This may not be the correct interpretation of this code, or possibly the program is handling errors incorrectly.

Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[3][1]
DescriptionThe default facility code.[3][1]
Error Code162 (0x00a2)

Questions

3votes
1answer

C# Find a variable by value

I am making an "error code to String" converter that would display the name of an error code from its value, for example 0x000000c3 would give "Class not found", but using MY OWN error codes! Here's how it actually looks like: #region errcodes public int NORMAL_STOP = 0x00000000; public int [...] read more
c#
0votes
0answers

ET035009DH6 lcd display config

The display (ET035009DH6) stays dark with the following configuration. The backlight is on. Touch is working. ETM035009EDH6 Spec * Toradex Colibri iMX6ULL 512MB V1.1A * Toradex Colibri Evaluation Board Rev. 3.2 * ET035009DH6 * angstrom-lxde-image Device Tree lcdif@021c8000 { compatible = "fsl,imx6ul-lcdif", "fsl,imx28-lcdif"; reg = <0x021c8000 0x00004000>; interrupts = <0x00000000 [...] read more
embedded-linux
yocto
u-boot
lcd
imx6
-1votes
3answers

Convert integer to hexa in sql

I want to convert int to hexadecimal in SQL. Example: SELECT CONVERT(VARBINARY(8), 162) > Result :0x000000A2 Actual value is this > A2 Why I am getting unnecessary part at prefix? Can I remove previous part? What is right way to handle it? read more
sql-server

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/bug-check-code-reference2
  3. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0