Windows error 0x00000094, 148

Detailed Error Information

PATH_BUSY[1]

MessageThe path specified cannot be used at this time.
Declared inwinerror.h

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

KERNEL_STACK_LOCKED_AT_EXIT[2]

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

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 Code148 (0x0094)

Questions

8votes
0answers

Fixing crashes Windows Phone apps with crashinfo of dev dashboard

I have a simple wp8.1 app published in the store (universal app) but it crashed. So I downloaded the excel file containing crash info from https://dev.windowsphone.com/en-us/DownloadReport The crash(es) occur in the latest version of my app and the clients have 8.1 (because you cannot run universal apps otherwise) Here is [...] read more
exception
windows-phone-8.1
win-universal-app
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

lldb does not allow to set breakpoint nor list the source file

Having the following assembly source: # hello_asm.s # as hello_asm.s -o hello_asm.o # ld hello_asm.o -e _main -o hello_asm .section __DATA,__data str: .asciz "Hello world!\n" .section __TEXT,__text .globl _main _main: movl $0x2000004, %eax # preparing system call 4 movl $1, %edi # STDOUT file descriptor is 1 movq str@GOTPCREL(%rip), %rsi [...] read more
macos
assembly
lldb
macos-big-sur
2votes
0answers

How can I use LD to place ARM reset vectors in a program segment

I have an ARM A5 Microprocessor with 2 major segments of memory. When it boots up, a hardware bootloader (see page 64) loads a 64k software bootloader that I wrote into sram. The software bootloader then reads an .elf file from a flash memory chip and loads it into ddram. [...] read more
c
linker
arm
linker-scripts
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

D3D11CreateDevice causes a reading access violation

THE CODE & QUESTION I'm trying out Microsoft's Application Verifier and hitting a read-access violation on the simple code below. Is this my fault? If not, who should I report this to? #include <D3D11_1.h> #pragma comment(lib, "d3d11.lib") void main() { ID3D11Device* device = NULL; D3D11CreateDevice( NULL, D3D_DRIVER_TYPE_HARDWARE, NULL, 0, NULL, [...] read more
graphics
driver
direct3d
ati
application-verifier
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
0votes
0answers

SetUserData from Box2D libary, resulting in Exception thrown at 0x010110077

I am new to Box2D, and I wanted to create a body that would SetUserData of 2 different players but it results in "Exception thrown at 0x01011007 in ConsoleApplication1.exe: 0xC0000005: Access violation writing location 0x00000094." I already tried to do player_body[0]->SetUserData("player1"); but it says cannot convert from const char to [...] read more
c++
box2d
sfml
0votes
0answers

How to implement poll function into Linux kernel module?

I'm trying to implement polling functionality into my simple Linux kernel module called gpio_driver for my Raspberry Pi which should notify the user space poll function about the change of state of one of the GPIO pins (button push). What I did in my gpio_driver is set the internal pull [...] read more
c
linux-kernel
linux-device-driver
polling
gpio
0votes
0answers

When program finishes final line, it will set register r0 to 0

I have code at the end of my program that is as follows: ldrb r2, [r1, #12] sub r2, r2, #48 cmp r2, r7 beq Check sub r0, r0, #1 Check add r0, #1 END If cmp r2, r7 decides r2 & r7 are equal, the program jumps to Check [...] read more
assembly
arm

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