Windows error 0x000000A4, 164

Detailed Error Information

MAX_THRDS_REACHED[1]

MessageNo more threads can be created in the system.
Declared inwinerror.h

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

CNSS_FILE_SYSTEM_FILTER[2]

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

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 Code164 (0x00a4)

Questions

2votes
1answer

fputws to stderr crashes app

I'm kind of confused if I'm not doing anything wrong, but following code: #include <stdio.h> int main() { fputws(L"this fails.\n", stderr); return 0; } crashes for me with the following exception: Unhandled exception at 0x56BEDABC (msvcr110.dll) in errors.exe: 0xC0000005: Access violation reading location 0x000000A4. I'm using MSVC2012. I tried to [...] read more
c
visual-studio-2012
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
1vote
0answers

iOS OpenGL glClear crash when starting app

In our game we use OpenGL for rendering. Sometimes app randomly crashes just after starting when calling this method first time: glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); We are making call of this method before rendering the game scene. Here's the stack trace of crash: 0 Crashed: com.apple.main-thread EXC_BAD_ACCESS KERN_INVALID_ADDRESS at 0x000000a4 0 [...] read more
c++
ios
opengl-es
1vote
1answer

uiwebview webthread crashing

My App with an UIWebView is crashing a lot. The crash is often slightly different, but it's always a crash of the "WebThread" with a similar stack trace. I found this question but I don't think it's my case, I have iOS 6 and I'm not loading Office documents. I'm [...] read more
uiwebview
ios6
0votes
1answer

How to load a stacktrace into Visual Studio 2013 for offline debugging?

Well i'm in the situation where my dll file passes all the tests but somehow on the production server it sometimes does crash at the least expected moments. There is actually no possibility to run a debugger but there is a generated stacktrace file: An exception occured at address 0x0045DA51 [...] read more
windows
debugging
visual-c++
visual-studio-2013
visual-studio-debugging

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