Windows error 0x00000054, 84

Detailed Error Information

OUT_OF_STRUCTURES[1]

MessageStorage to process this request is not available.
Declared inwinerror.h

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

LM_SERVER_INTERNAL_ERROR[2]

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

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 Code84 (0x0054)

Questions

61votes
13answers

How to iterate over a string in C?

Right now I'm trying this: #include <stdio.h> int main(int argc, char *argv[]) { if (argc != 3) { printf("Usage: %s %s sourcecode input", argv[0], argv[1]); } else { char source[] = "This is an example."; int i; for (i = 0; i < sizeof(source); i++) { printf("%c", source[i]); } } [...] read more
c
iteration
5votes
1answer

JRE crashes when running sqlite statements

I've never seen something like this. I've spent over an hour whittling this down to the simplest I could get it. import java.io.File; import java.sql.*; public class Test { private static final String DB_PATH = "test.db"; public static void main(String[] args) throws ClassNotFoundException, SQLException { Class.forName("org.sqlite.JDBC"); new File(DB_PATH).delete(); Connection conn [...] read more
java
sqlite
jdbc
4votes
2answers

Bit order in struct is not what I would have expected

I have a framework which uses 16 bit floats, and I wanted to separate its components to then use for 32bit floats. In my first approach I used bit shifts and similar, and while that worked, it was wildly chaotic to read. I then wanted to use custom bit sized [...] read more
c++
endianness
bit-fields
4votes
0answers

Objective-C callstack and arguments access

Is it possible to access arguments for caller and caller-of-caller via Obj-C runtime. I only found: NSLog(@"%@", [NSThread callStackSymbols]); I know it is possible, but is there any instruments (API) ? UPDATE 1: Maybe we can analyze [NSThread callStackSymbols] to determine number of arguments in each nested call. And then [...] read more
arguments
callstack
objective-c-runtime
3votes
1answer

Stream from IP Camera very jittery on VLC

This question is a prologue to the one I previously asked here. I'm working on an IP camera project that is based on TI OMAP-L138. All in all, the H264 encoded video is streamed via live555 libraries over RTSP. For Live555 I'm using deviceSource based framed source. However, when I [...] read more
c++
algorithm
h.264
live555
2votes
1answer

Are ARM Cortex-M0 Stacking Registers Saved On $psp or $msp During Hardfault?

I have an issue where my Cortex-M0 is hard faulting, so I am trying to debug it. I am trying to print the contents of the ARM core registers that were pushed to the stack when the hard fault occurred. Here is my basic assembly code: __attribute__((naked)) void HardFaultVector(void) { [...] read more
arm
cortex-m
fault
thumb
stack-frame
2votes
1answer

glDrawElements causes access violation with GL_PATCHES only

I've been mucking around with glsl shaders recently and have just started with the fancy new tessellation stage. It was working perfectly for a while then all of the sudden, BANG, it fails. Whenever I run it with the original parameters and such, it breaks on, glDrawElements(GL_PATCHES, numIndicies, GL_UNSIGNED_INT, 0) [...] read more
c++
opengl
1vote
1answer

Mips rot encryption

So i'm trying to program the Rot47 algorithm in MIPS .data message: .asciiz "This text should probably contain something useful!" message_size:.word 51 .text main: li $t1, 0 la $t0, message loop: lb $a0, 0($t0) #load the first ascii-char of the string beqz $a0, done addi $t0, $t0,1 addi $t1, $t1,1 [...] read more
assembly
mips
mars-simulator
1vote
0answers

C - Get File Bytes as Unsigned Int

I need the bytes of a BIN file converted to a unsigned int, in this format (JavaScript): p.write4(shellcode.add32(0x00000000), 0x00000be9); p.write4(shellcode.add32(0x00000004), 0x90909000); p.write4(shellcode.add32(0x00000008), 0x90909090); p.write4(shellcode.add32(0x0000000c), 0x90909090); p.write4(shellcode.add32(0x00000010), 0x0082b955); p.write4(shellcode.add32(0x00000014), 0x8948c000); p.write4(shellcode.add32(0x00000018), 0x415741e5); p.write4(shellcode.add32(0x0000001c), 0x41554156); p.write4(shellcode.add32(0x00000020), 0x83485354); p.write4(shellcode.add32(0x00000024), 0x320f18ec); p.write4(shellcode.add32(0x00000028), 0x89d58949); p.write4(shellcode.add32(0x0000002c), 0x64b948c0); p.write4(shellcode.add32(0x00000030), 0x77737069); p.write4(shellcode.add32(0x00000034), 0x49000000); p.write4(shellcode.add32(0x00000038), 0x4120e5c1); p.write4(shellcode.add32(0x0000003c), 0x000200bc); p.write4(shellcode.add32(0x00000040), [...] read more
c
1vote
1answer

uPP Device Driver is dropping data from buffer

I have written code for a uPP device driver to be used with an OMAPL138 based custom board for data acquisition through a camera lens. The code for my device driver is: /* * A device driver for the Texas Instruments * Universal Paralllel Port (UPP) * * Modified by: [...] read more
c
multithreading
arm
linux-device-driver
omap
1vote
2answers

C++: Casting derived pointer to void pointer and then to abstract pointer, and accessing member functions

I have a controller function to take care of a number of objects whose specific classes are all derived from a pure virtual class. class Abstract { public: virtual bool ReadyForWork() = 0; virtual void DoWork() = 0; }; Then I have the following: class Specific : public virtual Abstract [...] read more
c++
pointers
casting
abstract
derived
1vote
1answer

uiwebview webthread crashing

My App with an UIWebView is crashing a lot. The crash is often slightly different, but it's always a crash of the "WebThread" with a similar stack trace. I found this question but I don't think it's my case, I have iOS 6 and I'm not loading Office documents. I'm [...] read more
uiwebview
ios6
0votes
1answer

iPad 3 crash on app launch with EXC_BAD_ACCESS and KERN_INVALID_ADDRESS

I'm checking my app with iPad its working fine, the flow goes well. When I try with the iPad 3, It crashes with the following log: CrashReporter Key: 793204a942c8c4835c8ee40189ce37008d86e70c Hardware Model: iPad3,3 Process: Jansirani [696] Path: /var/mobile/Applications/3C74B74A-7D41-4A61-9EF5-F6E92252612D/Jansirani.app/Jansirani Identifier: Jansirani Version: ??? (???) Code Type: ARM (Native) Parent Process: launchd [1] [...] read more
ios
storyboard
ipad-3
0votes
0answers

Issues with Writing

------------------------------------------------------------ UPDATED ------------------------------------------------------ I'm trying to make a code to reverse a string from one location and place it in another, but I keep getting an issue in the start of the reverse part. I want to load the last byte of the string into another register, but I get [...] read more
assembly
arm7
0votes
1answer

Windows Phone app exception: System.Windows.Markup.XamlParseException

I have a windows phone app which works fine in the emulator and on my test device (Lumia 520), but when published to the store it appears everyone is having issues with it. In my crash logs I see lots of the same error: Problem Function: MS.Internal.XcpImports.TileHostV2_SetNativeContentProvider Exception Type: System.Windows.Markup.XamlParseException [...] read more
windows-phone-8
windows-phone
0votes
1answer

iPhone app crashes on first run/install (apns?) but ok after... logs attached

My app crashes the very first time it runs/installs. After that it's fine. It also appears that this issue resolved itself with iOS. I'm currently working on an update and it would be great to have it at 100% health. Here's the crash log Although I'm getting my head around [...] read more
iphone
ios
crash
installation
-1votes
1answer

Can't Instantiate Object in Constructor

I have a C++ header file like so: class someClass : public someBaseClass { public: someClass(); ~someClass(); private: Text playText; //declare text object }; The C++ source file for it is: someClass::someClass() : playText("Play") //instantiate text object { } someClass::~someClass() { } Then I have another class which has a [...] read more
c++
object
static
instantiation

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