Windows error 0x000000B1, 177

Detailed Error Information

BGI_DETECTED_VIOLATION[1]

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

HRESULT analysis[2]

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[2][3]
DescriptionThe default facility code.[2][3]
Error Code177 (0x00b1)

Questions

3votes
1answer

C# Find a variable by value

I am making an "error code to String" converter that would display the name of an error code from its value, for example 0x000000c3 would give "Class not found", but using MY OWN error codes! Here's how it actually looks like: #region errcodes public int NORMAL_STOP = 0x00000000; public int [...] read more
c#
2votes
3answers

Is GDB interpreting the memory address correctly?

I am examining the contents of a memory address using GDB, but don't know if it is being displayed correctly. (gdb) p (char *)0x8182f40 $4 = 0x8182f40 "XYZ" (gdb) (gdb) x/40x 0x8182f40-16 0x8182f30: 0x00000000 0x00000000 0x000000a8 0x00000010 0x8182f40: 0x005a5958 0x00000000 0x00000000 0x00000029 0x8182f50: 0x00000000 0x00000000 0x00010000 0x082439d8 0x8182f60: 0x08199100 0x00000000 [...] read more
c
gdb
1vote
0answers

Google breakpad give invalid dump info on some devices/cpus/os?

I've compiled and ran google-breakpad on android app successfully, and solved some crashes with the sufficient information collected through it. But among the dumps there're some insufficient ones that give no stack trace or issued models. I spent some time trying to figure out the relationship between dump info and [...] read more
android
android-ndk
google-breakpad
0votes
2answers

Issue while debugging Linux based C++ code visual studio code

I am trying to debug my code in visual studio code in Linux - Ubuntu. I have configured the debugging configurations according to the specification. But when trying to debug I am getting the following error. > =thread-group-added,id="i1" GNU gdb (Ubuntu 7.11.1-0ubuntu1~16.5) 7.11.1 > Copyright (C) 2016 Free Software Foundation, [...] read more
c++
linux
visual-studio-code
0votes
0answers

Configuring makefile to compile with debug information in linker phase

The Make file below is not compiling with debugging information. Could anybody suggest what is wrong? I'm not a makefile expert. I've tried adding the -g options. What else should I do? This is related to this post - I can't use gdb in visual studio code? Issue while debugging [...] read more
makefile
0votes
1answer

sendkey enter to a pop up on application in c#

I am trying to close this startup pop up in program by sending an enter key programmatically. I have followed some of the examples in this site about creating a class within the same namespace to handel this, but I don't know how to use it in main form. check [...] read more
c#
0votes
1answer

Strange stack trace in Windows Phone 8

Hi I have a Windows phone app which is getting a number of crashes reported by the dev center. I recently did an upgrade which included some minor changes and the moving of some common code from a Silverlight class library to a Windows phone class library (so that I [...] read more
windows-phone-8
crash-dumps

Comments

Leave a comment

(plain text only)

Sources

  1. https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/bug-check-code-reference2
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx
  3. winerror.h from Windows SDK 10.0.14393.0

User contributions licensed under CC BY-SA 3.0