Windows error 0x00000098, 152

Detailed Error Information

TOO_MANY_MUXWAITERS[1]

MessageDosMuxSemWait did not execute; too many semaphores are already set.
Declared inwinerror.h

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

END_OF_NT_EVALUATION_PERIOD[2]

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

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 Code152 (0x0098)

Questions

7votes
5answers

UIWebView loading html5-Video EXC_BAD_ACCESS crash

in our iPad-App we are using an UIWebView to load different sites from one domain some of them with a hml5-Video. Sites without a Video do load perfectly. But when I'm loading a site containing htmlt5-video sometimes my app crashes during the loading-process of the UIWebView with EXC_BAD_ACCESS and sometimes [...] read more
iphone
objective-c
uiwebview
exc-bad-access
html5-video
2votes
1answer

Analyzing crash dump file from Windows 2003 R2 SP2

My Windows 2003 R2 SP2 server crashes about once a month. I analyzed the crash dump but can't really figure out what it means. Any help is appreciated.... > Microsoft (R) Windows Debugger Version 6.2.9200.20512 AMD64 Copyright (c) > Microsoft Corporation. All rights reserved. > > Loading Dump File [C:\Users\noam\Downloads\MEMORY.DMP] [...] read more
windows-server-2003
server-crashes
bsod
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
2votes
1answer

unknown arm linux kernel image format

I have a ARM linux kernel image file. but I am not sure exactly what kind of format it is... the 'file' command tells me that it is pure data. first, I thought it is vmlinuz and tried to decompress it. I searched 'gzip' header signature and uncompressed from there. [...] read more
linux
kernel
arm
1vote
0answers

C - Get File Bytes as Unsigned Int

I need the bytes of a BIN file converted to a unsigned int, in this format (JavaScript): p.write4(shellcode.add32(0x00000000), 0x00000be9); p.write4(shellcode.add32(0x00000004), 0x90909000); p.write4(shellcode.add32(0x00000008), 0x90909090); p.write4(shellcode.add32(0x0000000c), 0x90909090); p.write4(shellcode.add32(0x00000010), 0x0082b955); p.write4(shellcode.add32(0x00000014), 0x8948c000); p.write4(shellcode.add32(0x00000018), 0x415741e5); p.write4(shellcode.add32(0x0000001c), 0x41554156); p.write4(shellcode.add32(0x00000020), 0x83485354); p.write4(shellcode.add32(0x00000024), 0x320f18ec); p.write4(shellcode.add32(0x00000028), 0x89d58949); p.write4(shellcode.add32(0x0000002c), 0x64b948c0); p.write4(shellcode.add32(0x00000030), 0x77737069); p.write4(shellcode.add32(0x00000034), 0x49000000); p.write4(shellcode.add32(0x00000038), 0x4120e5c1); p.write4(shellcode.add32(0x0000003c), 0x000200bc); p.write4(shellcode.add32(0x00000040), [...] read more
c
0votes
0answers

How to implement poll function into Linux kernel module?

I'm trying to implement polling functionality into my simple Linux kernel module called gpio_driver for my Raspberry Pi which should notify the user space poll function about the change of state of one of the GPIO pins (button push). What I did in my gpio_driver is set the internal pull [...] read more
c
linux-kernel
linux-device-driver
polling
gpio
0votes
0answers

When program finishes final line, it will set register r0 to 0

I have code at the end of my program that is as follows: ldrb r2, [r1, #12] sub r2, r2, #48 cmp r2, r7 beq Check sub r0, r0, #1 Check add r0, #1 END If cmp r2, r7 decides r2 & r7 are equal, the program jumps to Check [...] read more
assembly
arm

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