Windows error 0x000000DC, 220

Detailed Error Information

FILE_CHECKED_OUT[1]

MessageThis file is checked out or locked for editing by another user.
Declared inwinerror.h

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

DRIVER_INVALID_STACK_ACCESS[2]

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

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 Code220 (0x00dc)

Questions

2votes
0answers

mspgcc-size ROM/RAM usage in percentage

With mspgcc-size I can get an output like this: text data bss dec hex 13072 236 65296 78604 1330c We know that: Flash = data + text RAM = data + bss How can I extract the size of ROM/RAM from the selected -mmcu=msp430g2553 with the toolchain? e.g. ROM: 8192 [...] read more
microcontroller
avr-gcc
toolchain
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

Compare unicode std::string with usual "" literal or u8"" declartion

On Windows with Visual Studio 2015 // Ü // UTF-8 (hex) 0xC3 0x9C // UTF-16 (hex) 0x00DC // UTF-32 (hex) 0x000000DC using namespace std::string_literals; const auto narrow_multibyte_string_s = "\u00dc"s; const auto wide_string_s = L"\u00dc"s; const auto utf8_encoded_string_s = u8"\u00dc"s; const auto utf16_encoded_string_s = u"\u00dc"s; const auto utf32_encoded_string_s = U"\u00dc"s; assert(utf8_encoded_string_s [...] read more
c++11
unicode
utf-8
stdstring
string-literals
0votes
0answers

App Verifier Stop 00000900 using File Open Dialog

My C++/MFC program uses the CFileDialog class to retrieve a filename to open. If I comment out the DoModal() call, no Verifier Stops occur. If the dialog is opened (even if it is then simply Canceled), the stops are generated -- three in a row. So I tried the Common [...] read more
c++
memory-leaks
heap-memory
application-verifier
0votes
1answer

Assembly Tricore load instruction

for reference of the assembly language see this link I don't understand what the command LD.BU d15,[a15]0x0 exactly does.... here a specific example: ##What the registers contain BEFORE execution## D15 0xD0000894 A15 0xD0000894 ##What the registers contain AFTER execution## D15 0x000000DC A15 0xD0000894 Can anyone shortly explain me this? read more
assembly
infineon
0votes
1answer

How to tell which pointers are the frame pointers from the GDB x/64x $sp command?

I am having a problem when running a stack trace: Backtrace stopped: previous frame identical to this frame (corrupt stack?) I found this article online that may help. However, I don't know how this person knew which of the reported pointers where the frame pointers. Here is my output from [...] read more
gdb
backtrace
0votes
2answers

WMNetMgr.dll Application Error w3wp.exe error using WMPLib C# .NET

I am having an issue with my web application regularly crashing and resetting the application pool in IIS causing big performance issues, as well as wiping any timing threads running in my application. The site is a .NET 4.5.2 C# MVC5 Site running on a 2012 Windows Server EC2 instance [...] read more
c#
.net
multithreading
iis
wmplib
0votes
1answer

Crash Log symbolication IOS 8.1.2 in xcode 6.1?

I tried to rectify the crash using the crash report under "Windows->Devices->View Device Logs", but the crash log is full of numbers. I tried Re-Symbolicate option, but there is no change. "Exceptional Codes" data is also missing in the report. I'm using single Mac System to run the project and [...] read more
ios
xcode
ios8
ios8.1
-2votes
1answer

Unhandled exception at 0x00B84CD6 in DirectXGame.exe: 0xC0000005: Access violation reading location 0x000000DC

C++ DirectX11 visual studio 2012. I have declared my GKController1 class as a ref class. I am new to C++ programming and I didn't write most of this code so I don't really understand why it's breaking. If you need anymore code just ask. Thanks. Here's the code where it [...] read more
c++

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