Windows error 0x00000097, 151

Detailed Error Information

INVALID_EVENT_COUNT[1]

MessageThe number of specified semaphore events for DosMuxSemWait is not correct.
Declared inwinerror.h

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

BOUND_IMAGE_UNSUPPORTED[2]

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

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 Code151 (0x0097)

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
1answer

How to stop Java from truncating 32bit int to single byte over java.net.Socket ? Or maybe use something else?

So the code is really as simple as it gets int len = 0x00000097; Socket sock = new Socket(host, port); DataOutputStream out = new DataOutputStream(sock.getOutputStream()); out.write(i); out.flush(); out.write(xml_doc); out.flush(); So the idea is that the host is expecting an xml form but its length before hand. The form is a [...] read more
java
sockets
tcp
0votes
1answer

CentOS Development Server Crashing Frequently

I am running a development server on a fairly old version of CentOS 5. This server has been live almost constantly for the past five years ago, so has been pretty stable. A while ago, it crashed during normal operation. I restarted it and it crashed again after a few [...] read more
centos
centos5
server-crashes

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