Windows error 0x000000BB, 187

Detailed Error Information

SEM_NOT_FOUND[1]

MessageThe specified system semaphore name was not found.
Declared inwinerror.h

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

NETWORK_BOOT_INITIALIZATION_FAILED[2]

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

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 Code187 (0x00bb)

Questions

1vote
0answers

Converting image to black and white in objective c

I am trying to convert an image(UIImage*) into black and white(1bpp) bitmap(.bmp) in objective C. First, I get the original pixel data in ARGB 32-bit format(8 bit per component. And then manipulating pixel data to get the black and white version. I used the same logic for C#, Java, and [...] read more
ios
objective-c
0votes
0answers

OpenGL Quads Rendering in Black When Rendering Text

So, I'm using LWJGL and OpenGL to render some quads and textures. My quads have been working fine, until the addition of some textures. Specifically, when I added the ability to render text to the screen, all of the quads color has changed to black. I've looked around for a [...] read more
java
opengl
lwjgl
0votes
1answer

Calling a C++ method instance in WinDBG and printing the results

I have the following method I want to be able to invoke. It returns a C string. In GDB I use this call to print the result. Note that I need to set the proper thread and frame before invoking it, such that the kCurrentScope instance is available. printf "%s\n", [...] read more
c++
debugging
gdb
windbg
0votes
1answer

What is the meaning of 'mov %reg8, (%reg32)' (not movb)?

the test platform is x86-32bit. I know that on x86-32bit, we have two opcodes movsbl and movzbl which has the following semantics: %eax = 0x12345678 %edx = 0xAAAABBBB MOVB %dh, %al %eax = 0x123456BB MOVSBL %dh, %eax %eax = 0xFFFFFFBB MOVZBL %dh, %eax %eax = 0x000000BB The above example is [...] read more
assembly
x86
att
opcode
-4votes
2answers

How queue a Hex array in an int array in C?

How can I queue an Hex Array in an other int array ? Like: uint8_t id[]= {0xBB,0x50,0x60,0x9E,0x99}; uint32_t message[2]; that the result is: message[0] =0x50609E99; message[1] =0x000000BB; I know that it is somehow possible with <<,>>|,& but I dont know how.... read more
c
bit-shift

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