Windows error 0x0000005A, 90

Detailed Error Information

CRITICAL_SERVICE_FAILED[1]

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

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 Code90 (0x005a)

Questions

3votes
3answers

How to synchronize time between a Windows client and a Linux NTP server?

I want my Windows 7 machine to get its time from my Linux Debian Sid server. So I want ahead and installed OpenNTPD from the Debian repository. It doesn't listen to anything by default, so I configured it as follows: listen on 192.168.0.1 server 0.debian.pool.ntp.org server 1.debian.pool.ntp.org server 2.debian.pool.ntp.org server [...] read more
linux
windows
ntp
ntpd
1vote
0answers

Size of data on WebRTC Data Channel between native app and browser

I have a data channel between my native webrtc application and a firefox browser. When I send a 200Kb image data from the native app to the firefox browser I get the following error: (sctpdataengine.cc:672): ERROR:SctpDataMediaChannel->SendData(...): usrsctp_sendv: : [0x0000005a] Message too long (datachannel.cc:580): Closing the DataChannel due to a failure [...] read more
firefox
webrtc
1vote
0answers

Analyze backtrace of Kernel panic on Android / find cause

I have this problem on my Samsung Galaxy Note 2 LTE with random reboots and kind of clean restarts in the kernel logs (no oops / panic, even though some usb errors) and now I got a kernel panic in the last_kmsg log. In this log I recognized 10 attempts [...] read more
android
linux-kernel
crash
crash-dumps
panic
0votes
1answer

GetLocaleInfo in NSIS

I'm trying to get locale infos in NSIS (using this code). As my system is in french, I'd hope to get a string like "fr-FR", but I'm getting chineese synbols instead :/ output [https://i.stack.imgur.com/5aOjK.png] Any idea of what I'm doing wrong? !define LOCALE_ILANGUAGE '0x1' ;System Language Resource ID !define LOCALE_SLANGUAGE [...] read more
localization
nsis
0votes
1answer

Same HTTP request passes with CURL_CLI but fails with LIBCURL

Am using libcurl to communicate with Amazon S3. GET calls are success whereas PUT (for uploading files) calls are failing with 403. PUT call with same headers when ran through CURL-CLI are success. I have disabled certificate checking. [[ curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0) ]] Using CURLOPT_DEBUGFUNCTION option as specified in https://curl.haxx.se/libcurl/c/CURLOPT_DEBUGFUNCTION.html, [...] read more
c
curl
libcurl
0votes
1answer

An Outlook plugin memory leak when using CComVariant

I'm analyzing a handle leak and memory leak in a Outlook plugin. I put my analysis step here, as I hardly have any c++ knowledge (Last time I used c++ is 7 years ago). After searching from Google, I used WinDbg's !htrace -diff command to find the handle leak. Also, [...] read more
c++
memory-leaks
0votes
1answer

Handler not working

I have used the OrientationEventListener which I have coupled with a Handler to update a TextView when the screen rotates: MainHandler handler; TextView tv; MyOrientationEventListener listener; class MainHandler extends Handler { @Override public void handleMessage(Message msg) { switch(msg.what) { case MSG_ORIENTATION: if(tv!=null) tv.setText(msg.arg1); break; default: if(tv!=null) tv.setText("Nothing to see here"); [...] read more
java
android
handler
android-orientation
0votes
1answer

Debugging C++ Native Windows Phone 8 app

I am trying to figure out how to get to 0x0001556c offset of my application. This is the error that came in apphub: "Frame Image Function Offset 0 kernelbase RaiseException 0x00000036 1 msvcr110 _CxxThrowException 0x0000005a 2 windowsphone8program 0x0001556c" A C++ exception is being thrown, but I need to see what [...] read more
c++
debugging
exception
c++11
exception-handling
0votes
1answer

WPF Control embedded in Winform causes App Crash

I am working on an outlook addin where we are using WPF user control embedded in a Windows form using ElementHost. This app crashes on only few machines intermittently.After analyzing crash dump,the WPF rendering thread seems to be causing this crash.The stack trace in the windbg looks like FAULTING_IP: msvcr80!memcpy+5a [...] read more
wpf
winforms
outlook-addin
winforms-interop
hardware-acceleration
0votes
1answer

OpenLdap Replication

I have installed openldap on two machines and tried to setup multi-way replication.I am able to perform the multi-way replication (Add/Update/delete) when both the machines are up and ldap is running. But when my one machine goes down(server2) and records are added,deleted,modified on (server1) are not getting replicated on server2 [...] read more
ldap
replication

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