Windows error 0xDEADDEAD, -559030611

Detailed Error Information

MANUALLY_INITIATED_CRASH1[1]

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

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)true
OriginMicrosoft
NTSTATUStrue
Reserved (X)true
FacilityCode3757 (0xead)
Error Code57005 (0xdead)

Questions

4votes
1answer

Time when the Heap snapshot is taken when dumping Core

We have a posix mutli-threaded C++ program running on Linux 2.6.32, which core-dumps in one of the threads. Analysing the core file with gdb-7.2 corss-compiled, we see that the faulting instruction is here 0x11491178 <+208>: lwz r0,8(r9) and registers in the frame show: (gdb) info reg r0 0x0 0 …. [...] read more
c++
linux
multithreading
gdb
coredump
3votes
3answers

Is it possible to define/scramble indeterminate values in C/C++ for debug purposes?

Uninitialized variables may have indeterminate values, as this answer to an earlier question points out. Is there a way to specify this indeterminate data to, say, repeat 0xDEADDEAD? The indeterminate data is apparently compiler-specific, but it would always be nice to force it to be something easily recognizable. Are there [...] read more
c++
c
2votes
2answers

Does a manually initiated crash (bugcheck 0xDEADDEAD) trigger a disk-check?

Windows has an advanced function built-in that lets a user manually initiate a BSOD. It is a debugging tool used to halt the system in the event of (though not necessarily limited to) a hang or freeze. When used, it causes a BSOD with the string MANUALLY_INITIATED_CRASH1 and whimsical code [...] read more
windows
bsod
chkdsk
0votes
0answers

iOS EXC_BAD_ACCESS Crash on Nativescript app

We've made an Android and iOS app and send this through some testing. Our tests found no bugs however when sending it to the App store we got denied and returned a crashlog. I however can't find the bug with the information given. Can anybody help me translate this crashlog? [...] read more
ios
app-store
nativescript
crash-log
0votes
0answers

Memory Corruption in C linked list

My program after running for around few hours randomly crashes because of a segmentation fault. My environment is Ubuntu (Linux) When I try to print the data structure thats being accessed when it crashed the pointer is always pointing to invalid memory. (gdb) p *xxx_info[8] **Cannot access memory at address [...] read more
c
linux
debugging
memory
memory-leaks

Comments

Leave a comment

(plain text only)

Sources

  1. https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/bug-check-code-reference2
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0