aboutsummaryrefslogtreecommitdiff
path: root/main/bsod.cpp
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-06-19 18:12:44 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-06-19 18:12:44 +0000
commit5039898b102401ecbad9a3f08f7931c806aefc08 (patch)
tree2fe7a5c2b659a7b63df632dabaab282cbacb593c /main/bsod.cpp
parentbe13a07e04a3df07f5a82419de8e8acca7b3a140 (diff)
downloadenigma2-5039898b102401ecbad9a3f08f7931c806aefc08.tar.gz
enigma2-5039898b102401ecbad9a3f08f7931c806aefc08.zip
dump code in case of SIGSEGV
Diffstat (limited to 'main/bsod.cpp')
-rw-r--r--main/bsod.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/main/bsod.cpp b/main/bsod.cpp
index d0d2ec7e..2248d01c 100644
--- a/main/bsod.cpp
+++ b/main/bsod.cpp
@@ -143,6 +143,18 @@ void bsodFatal()
void oops(const mcontext_t &context, int dumpcode)
{
eDebug("PC: %08lx, vaddr: %08lx", (unsigned long)context.pc, (unsigned long)context.badvaddr);
+
+ /* this is temporary debug stuff. */
+ if (dumpcode && ((unsigned long)context.pc) > 0x10000) /* not a zero pointer */
+ {
+ eDebug("As a final action, i will try to dump a bit of code.");
+ eDebug("I just hope that this won't crash.");
+ int i;
+ eDebugNoNewLine("%08x:", (unsigned long)context.pc);
+ for (i=0; i<0x20; ++i)
+ eDebugNoNewLine(" %02x", ((unsigned char*)context.pc)[i]);
+ eDebug(" (end)");
+ }
}
#else
#warning "no oops support!"