Windows error 0x00000081, 129

Detailed Error Information

CHILD_NOT_COMPLETE[1]

MessageThe %1 application cannot be run in Win32 mode.
Declared inwinerror.h

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

SPIN_LOCK_INIT_FAILURE[2]

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

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 Code129 (0x0081)

Questions

4votes
4answers

From a huge enumeration, I try to make a function to apply the right action without using a switch body by using some template tricks

I have an enum type with 1223 elements. I had a function with 1222 cases and a default case in a switch block. If I want to modify some elements in the enum type, I also need to modify that function. Worse, I may have more than one function with [...] read more
c++
templates
c++11
3votes
2answers

No device file for partition on logical volume (Linux LVM)

I created a logical volume (scandata) containing a single ext3 partition. It is the only logical volume in its volume group (case4t). Said volume group is comprised by 3 physical volumes, which are three primary partitions on a single block device (/dev/sdb). When I created it, I could mount the [...] read more
mount
partition
lvm
3votes
1answer

Migrating C code that talks to a USB glucometer device from Linux to Android

Post for StackOverflow: Android 2.2 USB SW Support I have a Bayer USB glucometer that I reverse engineered using a usbsnoop tool in Windows. I also found a Perl script to convert the usbsnoop output into C code which initiates data transfer from the USB device when executed. When I [...] read more
java
android
usb
android-2.2-froyo
jini
2votes
2answers

DWARF - How to find the prologue end/epilogue start addresses of functions in a given binary?

I have an ARM binary of which I need to find exactly at which addresses its function's prologues end and the epilogues begin. In other words, I need the boundaries of the function bodies. For instance, if I have a function whose assembly is something like: 0x00000320 <+0>: push {r7, [...] read more
c
assembly
objdump
dwarf
readelf
1vote
1answer

Fedora 18 add new hard disk with LVM Partition

I recently built my 1st computer and realized today that despite having multiple hard disks, I'm out of space because I did not set up the partitions correctly. I am trying to add two of my hard disks (not the boot disk) to my LVM group. First I made LVM [...] read more
hard-drive
partitioning
fedora
lvm
1vote
1answer

How to enable UART Interrupt in imx6q?

I am using I.MX6Q Sabre SD board. I am trying to build custom image with my own start script and ld script. The image is to be loaded with u-boot. I am trying to enable the UART receive interrupt for UART1. But it does not enter the Interrupt service routine. [...] read more
interrupt
uart
imx6
0votes
1answer

How do I force a domain controller to sync with the PDC?

DC2 (a VM) is not syncing to DC1 (a physical server). On DC2 I get: PS C:\> w32tm /query /source Local CMOS Clock What must I do so that DC2 syncs to DC1 as its time source? Background: I had to replace DC1 and it was my operations master. There [...] read more
windows-server-2012-r2
domain-controller
time-synchronization
fsmo
0votes
0answers

Init sequence of bluetooth daemon

I'm looking at light weight bluetooth tools from Bluez without dependency on bluetoothd and dbus. The folder "src/shared" of BlueZ has the code for such tools. For ex: btgattclient.c produces "gattclient" when compiled. gattclient is able to connect to ble peripheral device and read/write or receive notifications from the ble [...] read more
bluetooth
bluetooth-lowenergy
bluetooth-gatt
gatttool
gattlib
0votes
1answer

Custom Linux Build on NanoPi Neo Board

I am a noob to building custom linux OSes for embedded boards - so please ignore my ignorance. I have a board called NanoPi NEO that has custom Debian linux. Now the board comes with a .img file that can be flashed on to an SD card and plugged into [...] read more
linux
arm
embedded-linux
buildroot
nanopi
0votes
1answer

initialize a USB device from pywinusb / python

my problem lokks like the one suggested by Will "Simple reading/writing from/to a USB HID device in Python?", but following it I did not get any result. Problem: I am trying to handle the Oregon WMRS200 Meteo station, that implements a usb connection as a HID device. I started adapting/simplifying [...] read more
python-2.7
windows-xp
pywinusb

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