Windows error 0x000000E3, 227

Detailed Error Information

RESOURCE_NOT_OWNED[1]

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

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 Code227 (0x00e3)

Questions

1vote
1answer

Python-Gstreamer for dynamic control of element properties

I am using Gstreamer 1.0 with Python bindings. Below is the pipeline I am trying to build considering Opengl plugins : gltestsrc -> gltransformation -> glimagesink I am trying to modify the properties of element 'gltransformation' dynamically based on the values received from external hardware device. Here is the link, [...] read more
opengl
gstreamer
python-gstreamer
1vote
1answer

Xcode 4.3.2 10.7.3 app crash on launch

I have an app which was running fine with Xcode 4.2. As soon as I upgraded to Xcode 4.3.2, the app crashes on the 5.1 simulator on launch. 0x44e5c3: jmp 0x0044e63d ; Poco::MutexImpl::lockImpl() + 317 Get a SIGABRT here. Incident Identifier: CC84E826-5B79-4F66-9182-4C779CAF865B CrashReporter Key: 98f4ee80ecae8f5500ce329f80122c35d6e7a4b7 Hardware Model: iPad3,3 Process: DataQuery [...] read more
xcode
ios5
ios-simulator
0votes
1answer

Windows XP blue screen with Adobe Air browser

I tried to open the EmberJS official website using Adobe Air browser in Windows XP3. The machine crashed right away with blue screen of death. Here is the dump error: ================================================== Dump File : Mini110415-01.dmp Crash Time : 11/4/2015 4:38:38 PM Bug Check String : RESOURCE_NOT_OWNED Bug Check Code : [...] read more
ember.js
air
windows-xp
0votes
2answers

How to translate this inline assembly code to x64 assembly

I have following C++ function with inline assembly: void getMemAddrFromBIOSbySMI(int& bResult, unsigned long& addr,unsigned long& dataLength){ __asm { mov eax, 0x000000E3 mov ebx, 0x00000001 mov ecx, 0xFAFAFAFA mov edx, 0x000000B2 out dx,al mov bResult, eax mov addr, ebx mov dataLength, ecx } if((bResult & 0x000000FF) == 0){ bReSult = 1; [...] read more
c++
assembly

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