Windows error 0x000000FD, 253

Detailed Error Information

DIRTY_NOWRITE_PAGES_CONGESTION[1]

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

HRESULT analysis[2]

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[2][3]
DescriptionThe default facility code.[2][3]
Error Code253 (0x00fd)

Questions

1vote
1answer

I don't understand why the behavior of the 1's complement in C is different when acting on a number vs acting on a variable storing a number

Output of the following code: test1: 0x00000002 0b00000010 (1 bytes) test2: 0x000000fd 0b11111101 (1 bytes) ~test1: 0xfffffffd 0b4294967285 (4 bytes) I don't understand why doing ~(test1) is different from ~(0x02) since test1=0x02 and everything is unsigned. It appears that ~(test1) does the proper complement but then adds 3 bytes of [...] read more
c
bit-manipulation

Comments

Leave a comment

(plain text only)

Sources

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

User contributions licensed under CC BY-SA 3.0