Windows error 0x00000031, 49

Detailed Error Information

PHASE0_INITIALIZATION_FAILED[1]

This is a Blue Screen of Death stop code. More information is available in the Knowledge Base article Bug Check 0x31: PHASE0_INITIALIZATION_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 Code49 (0x0031)

Questions

5votes
1answer

DLR Routing failure in Kannel in a situation where there is a separate receiver and transceiver bind

I have a Kannel gateway with multiple SMPP binds ( one operator requires separate transmitter and receiver binds while another permits transceiver binds ). The transceiver binds do not display this problem, so I will not delve into more detail on those. In the separate receiver / transmitter bind scenario, [...] read more
sms
sms-gateway
smpp
kannel
4votes
1answer

FSharpTypeFunc.Specialize causing TypeLoadException

I'm getting the following run-time exception: > System.TypeLoadException was unhandled > Message=Method 'Specialize' on type [...] tried to implicitly override a > method with weaker type parameter constraints. This inner function appears to be the problem: let getKey (r: IDictionary<_,_>) = match r.TryGetValue(keyCol.Name) with | true, k when not (isNull [...] read more
exception
f#
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
2answers

ctypes: Passing string by reference

With regard to Python 2.5, I wish to implement the following C code in python: C code: #include <wtypes.h> __declspec(dllexport) X_ERROR __stdcall GetAdmSize(INT* piAdmSize, CHAR** chBuf, INT iBufSize); int iProgSize = 0; char szProgSize[50]; char* pszProgSize = szProgSize; error = GetAdmSize(&iProgSize, &pszProgSize, 49); Python code: from ctypes import * c_bool [...] read more
python
ctypes
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
0answers

How to extract USB device type and its drive letter from ETW

So I'm writing a simple ETW logger to provide a trigger-event state machine to wake up whenever a new USB device is connected. Using microsoft's Messages analyzer I managed to trace and receive USB "new usb device information" traces using the following filter Microsoft_Windows_USB_USBHUB3.Summary == "New USB Device Information" However, [...] read more
winapi
events
usb
etw
0votes
1answer

buffer overflow exploit experiment, unexpected result

I am doing an analysis of special cases of UB, for the purpose of learning about security leaks via exploits of buffer overflows. I have trouble understanding the result of an experiment wiht intentionally proked UB. Where I believe that the overflow of a buffer (which lies between another buffer [...] read more
c
security
buffer-overflow
0votes
1answer

32-bit pointer overflow in 64-bit gcc code - fails in compile

I am compiling a very large legacy Fortran 90 code (screamer) with gFortran on a Mac (2.2 GHz Intel Core i7) running Yosemite. (gFortran V5.1.0) I have 16 GB of RAM. The code is memory intensive and I am trying to increase array sizes to solve larger problems. I have [...] read more
pointers
gcc
compiler-errors
fortran
gfortran
0votes
0answers

Python,Ctypes - WindowsError: access violation

I'm developing instrument drivers for testing at work. It's first developed in C using the IVI/Visa standard. I am then using a python wrapper for a dll of the C to use the functions in the python environment. However with the current one I am getting an error: Traceback (most [...] read more
python
c
ctypes
0votes
2answers

How to change a property class in sub class in Objective-C

I am trying to re-write some code of old project, and ideally I want to achieve below code style, but I got a lot of compile error saying dataModel don't have getLineColor method. The abstract question is, can I change an inherited object A's class in sub view controller to [...] read more
objective-c
0votes
1answer

Inconsistent behaviour while testing a c++ application for performance

I have a c++ application which does authentications.The scenario is like testing maximum number of authentications it can do in a time period like 15 mins.So while testing its performance on a quad core machine with a performance testing software called "Load Runner",I am facing an issue I am getting [...] read more
c++
exception
performance-testing
xerces-c

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