Windows error 0x00000039, 57

Detailed Error Information

ADAP_HDW_ERR[1]

MessageA network adapter hardware error occurred.
Declared inwinerror.h

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

SYSTEM_EXIT_OWNED_MUTEX[2]

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

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 Code57 (0x0039)

Questions

2votes
1answer

SQLCLR: How to add assembly Npgsql.dll to database?

I'd like to execute PostgreSQL commands from SQCLR procedure. When I am adding Mono.Security.dll I receive error: Msg 6218, Level 16, State 2, Line 33 CREATE ASSEMBLY for assembly 'Mono.Security' failed because assembly 'Mono.Security' failed verification. Check if the referenced assemblies are up-to-date and trusted (for external_access or unsafe) to [...] read more
c#
sql-server
postgresql
mono
sqlclr
2votes
1answer

Linux syscall in vmlinux and virtual memory

I have find the sys_open code from vmlinux binary: c1143c20: 55 push ebp c1143c21: 89 e5 mov ebp,esp c1143c23: 83 ec 10 sub esp,0x10 c1143c26: 89 5d f4 mov DWORD PTR [ebp-0xc],ebx c1143c29: 89 75 f8 mov DWORD PTR [ebp-0x8],esi c1143c2c: 89 7d fc mov DWORD PTR [ebp-0x4],edi **c1143c2f: e8 [...] read more
linux
memory
linux-kernel
reverse-engineering
system-calls
2votes
1answer

Error using WebBrowser control inside PowerBuilder app when select an item in <select> tag

I'm using WebBrowser control in a window inside a PowerBuilder 11.5 application. Everything works fine on IE7 and IE8 but the application crashes in IE9 under Windows 7 when you select an item in a tag. In IE7 and IE8 I added my application to registry key FEATURE_USE_WINDOWEDSELECTCONTROL. In IE9 [...] read more
internet-explorer-9
activex
webbrowser-control
powerbuilder
html-select
1vote
0answers

ESP32: Guru Meditation Error: Core 1 panic'ed (StoreProhibited)

I've been working on a LED strip lately trying to create all kinds of animations. But one of them has caused quite a lot of trouble. It's meant to be a kind of firework. It usually runs once and when the loop starts a second time the following error comes [...] read more
arduino
esp32
fastled
0votes
0answers

What is a better way to turn a user-inputted hexadecimal string into a binary in MIPS?

I'm taking a computer architecture class, and they're having us use MIPS assembly. Our current assignment is asking us to take a user-inputted hex string, and turn it into a binary one. The code I've written "works", but it's horrible, to say the least. What would be a better approach [...] read more
assembly
mips
mars-simulator
0votes
1answer

Crash report when user accesses the addressbook

Incident Identifier: 236B9D70-0A5E-49B4-8A60-797CC9FEFF2B CrashReporter Key: 38c652a88ce03779805e96d5c4e36f9df820deba Hardware Model: xxx Process: LuckyOne [3493] Path: /var/mobile/Applications/7878C92C-5629-4163-AA84-B1D1C6676D2A/LuckyOne.app/LuckyOne Identifier: LuckyOne Version: ??? (???) Code Type: ARM (Native) Parent Process: launchd [1] Date/Time: 2013-06-26 15:24:11.148 -0700 OS Version: iOS 6.1.3 (10B329) Report Version: 104 Exception Type: EXC_BREAKPOINT (SIGTRAP) Exception Codes: 0x0000000000000001, 0x000000000000defe Crashed Thread: 1 [...] read more
ios
abaddressbook
-5votes
1answer

Unhandled exception in doubly linked lists

I'm attempting to implement a limit order book in C++ (a very simple one) by having a std::map where the keys are price points and the values are PricePoint objects. The Book class has two of these, bid and ask to store the buys and sells (respectively). #include <iostream> #include [...] read more
c++
exception

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