Windows error 0x000002D9, 729

Detailed Error Information

DRIVERS_LEAKING_LOCKED_PAGES[1]

MessageA device driver is leaking locked I/O pages causing system degradation. The system has automatically enabled tracking code in order to try and catch the culprit.
Declared inwinerror.h

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

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][1]
DescriptionThe default facility code.[2][1]
Error Code729 (0x02d9)

Questions

1vote
0answers

bomblab phase_6: Where did I make mistake?

This is the code of node6. 0x00005555555558ab <+0>: endbr64 0x00005555555558af <+4>: push %r14 0x00005555555558b1 <+6>: push %r13 0x00005555555558b3 <+8>: push %r12 0x00005555555558b5 <+10>: push %rbp 0x00005555555558b6 <+11>: push %rbx 0x00005555555558b7 <+12>: sub $0x60,%rsp 0x00005555555558bb <+16>: mov %fs:0x28,%rax 0x00005555555558c4 <+25>: mov %rax,0x58(%rsp) 0x00005555555558c9 <+30>: xor %eax,%eax 0x00005555555558cb <+32>: mov %rsp,%r13 0x00005555555558ce [...] read more
assembly
x86-64
reverse-engineering
0votes
0answers

How can I find the node6

I found that I needed to input 6 integers, and that the integers consist of 1 to 6. And I found the node1 ~ node5. But, this phase needs 6 nodes. So I looked for more, but instead of node 6, I found'host_table'. (gdb) x/3x 0x555555559230 0x555555559230 <node1>: 0x00000303 0x00000001 [...] read more
x86-64
reverse-engineering
disassembly

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0