Windows error 0x00000096, 150

Detailed Error Information

SYSTEM_TRACE[1]

MessageSystem trace information was not specified in your CONFIG.SYS file, or tracing is disallowed.
Declared inwinerror.h

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

INVALID_WORK_QUEUE_ITEM[2]

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

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 Code150 (0x0096)

Questions

2votes
1answer

lldb does not allow to set breakpoint nor list the source file

Having the following assembly source: # hello_asm.s # as hello_asm.s -o hello_asm.o # ld hello_asm.o -e _main -o hello_asm .section __DATA,__data str: .asciz "Hello world!\n" .section __TEXT,__text .globl _main _main: movl $0x2000004, %eax # preparing system call 4 movl $1, %edi # STDOUT file descriptor is 1 movq str@GOTPCREL(%rip), %rsi [...] read more
macos
assembly
lldb
macos-big-sur
0votes
0answers

dwarfdump output with overlapping ranges

I am using the dwarfdump command with these options -fFpPEo against a binary file. The output looks like this: fde: < 7><0x00000000:0x00000092><clear><fde offset 0x00005d70 length: 0x00000030><eh offset none> 0x00000000: <off cfa=00(r13) > 0x00000004: <off cfa=24(r13) > <off r4=-24(cfa) > <off r5=-20(cfa) > <off r6=-16(cfa) > <off r7=-12(cfa) > <off r8=-8(cfa) [...] read more
dwarf
0votes
0answers

App Verifier Stop 00000900 using File Open Dialog

My C++/MFC program uses the CFileDialog class to retrieve a filename to open. If I comment out the DoModal() call, no Verifier Stops occur. If the dialog is opened (even if it is then simply Canceled), the stops are generated -- three in a row. So I tried the Common [...] read more
c++
memory-leaks
heap-memory
application-verifier
0votes
0answers

BSOD Critical_Process_Died after enabling Windows Defender Firewall

Server 2019 1809 17763.914 running Remote Desktop Services and all updates are applied. On reboot, the Windows Defender Firewall is stopped (even though it is set to automatically start) and when I manually start the service (via any command line, windows services, server manager, defender gui etc.) it BSOD with [...] read more
windows-server-2019
bsod
windows-defender

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