Windows error 0x00000055, 85

Detailed Error Information

ALREADY_ASSIGNED[1]

MessageThe local device name is already in use.
Declared inwinerror.h

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

DATA_COHERENCY_EXCEPTION[2]

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

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 Code85 (0x0055)

Questions

4votes
2answers

Sending commands from custom made Bluetooth device to android phone to control music player

I have created a simple Bluetooth device using following components * HC05 module * Arduino Uno board (with re-programmable micro-controller) I am wondering if it is possible to send commands from my BT device, as if these commands were sent from Bluetooth headset? What I mean is: * we send [...] read more
bluetooth
arduino
headset
3votes
1answer

Avoiding BadImageFormatException when there is unmanaged code

I have a web service that throws a BadImageFormatException any time I try to run the service from Visual Studio. This answer to another question suggested running peverify against DLLs to see if there are any problems. While my web service's DLL is fine, the web service depends on an [...] read more
.net
unmanaged
ilmerge
badimageformatexception
peverify
2votes
0answers

Buffer Overflow Exploit Issue

I am trying to complete a a buffer overflow that involves overwriting a function pointer. The vulnerable C program is as follows: #include <stdlib.h> #include <unistd.h> #include <stdio.h> #include <string.h> void win() { printf("code flow successfully changed\n"); } int main(int argc, char **argv) { volatile int (*fp)(); char buffer[64]; fp [...] read more
python
buffer-overflow
2votes
1answer

Windows 8 application(Windows store app) suddenly terminates

I have created windows store app on windows 8 RTM version. Then I moved the application to run on Windows 8 pro with visual studio 12 Express. upon running the code it gave lot of errors(It was running fluently on RTM version), somehow I removed all errors and application is [...] read more
windows-8
microsoft-metro
1vote
1answer

Cannot write to serial

I am using the ESP32 DevKitC-v1 (clone) with FreeRTOS and attempting to write bytes to the serial port. My code (below) causes the following exception: Guru Meditation Error: Core 0 panic'ed (LoadProhibited). Exception was unhandled. Core 0 register dump: PC : 0x400ea8fe PS : 0x00060730 A0 : 0x800eb825 A1 : [...] read more
c++
c
freertos
rtos
esp32
0votes
1answer

Trying to read from switches and output in a LED switch board

I am wrtiing a program in PLP assembly that repeatedly reads the value of the switches (address: 0xf0100000) and displays a pattern on the LED array (address: 0xf0200000) based on what switches are clicked. Each time the switch value is read, the pattern should be displayed (regardless of whether the [...] read more
assembly
mips
0votes
1answer

Windows Phone App crashes after Launcher.LaunchFileAsync when downloaded from store

I have a strange problem, if I deploy my app through visual studio as debug or release version all is working well. But if I publish it to the store and download it from there the app crashes after Launcher.LaunchFileAsync or FileOpenPicker. When my app launches for example the default [...] read more
windows-phone
windows-phone-8.1
windows-phone-store

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