Windows error 0x00000111, 273

Detailed Error Information

RECURSIVE_NMI[1]

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

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 Code273 (0x0111)

Questions

3votes
2answers

Use awk to get value of the parameter in the array

journalctl -b showed me log like this: something something somethng aaa: 0x00000111 bbb: 0x00000222 ccc: 0x00000333 ddd: 0x00000444 something something somethng How to get value of parameter 'ccc'? For example: journalctl -b | awk '/ccc:/{print $1}' showed first word, but I need to get first word after 'ccc': 0x00000333 read more
bash
awk
grep
journal
1vote
1answer

DPI scaling problem with hosted native HWND control inside WPF window

I have a high dpi setting on my monitor as the monitor is a fairly small 3840 x 2160 monitor. This is causing issues with one of the applications I am writing as I am hosting a control in my main application. I developed it based off a nice example [...] read more
c#
wpf
scale
0votes
2answers

If I have hexadecimal numbers with some 1 digit long like 0x1 and some 5 digits long like 0x1e4b1, how do I write code to make them all 8 digits long?

I have some hexadecimal numbers like this in a .txt file: 0x1, 0x2, 0x1e4b1, 0x5b, 0x80, 0x52, 0x111, 0x6b0d, 0x4e, 0x34a, 0x2067, 0x6ef3, 0x1cf, 0x1b, 0x15b, 0x4f, 0xba8, 0x319. What I am trying to do now is overwrite the contents (using code) of the file and make the end result [...] read more
python
hex
0votes
2answers

Bit masking for I2C writes?

This has probably already been asked but I'm having trouble understanding how to do masking when writing using I2C. Say I have a function called i2c_update with the following parameters: dev Pointer to the device structure for the driver instance. dev_addr Address of the I2C device for updating. reg_addr Address [...] read more
c
bit-manipulation
0votes
1answer

WTL window/form crashes after infinite message loop causes stack overflow

I have a legacy project I need to fix bugs in, WTL/VC++. One of the problems - a crash of the main window (well, the entire application, of course) after Ctrl+X or Ctrl+Z keys are used. I don't have any custom accelerators assigned to those keys. I found that the [...] read more
visual-c++
wtl

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