diff options
author | Thomas Schwinge <thomas@schwinge.name> | 2010-05-19 01:09:08 +0200 |
---|---|---|
committer | Thomas Schwinge <thomas@schwinge.name> | 2010-05-19 01:09:08 +0200 |
commit | f3c0115d1bc09d95478149efdd19738415d225ef (patch) | |
tree | 43a41c7b2af4cf0acc79cf4edc810c29281ced71 /open_issues | |
parent | 7566b1ec17399f82767645af091efe7cbad3d243 (diff) | |
parent | 99d3b853da264d672aedefe478ecb34bd712e436 (diff) |
Merge remote branch 'flubber/master'
Conflicts:
open_issues/crash_server.mdwn
Diffstat (limited to 'open_issues')
-rw-r--r-- | open_issues/crash_server.mdwn | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/open_issues/crash_server.mdwn b/open_issues/crash_server.mdwn index 13da7f65..d97f5458 100644 --- a/open_issues/crash_server.mdwn +++ b/open_issues/crash_server.mdwn @@ -54,6 +54,8 @@ one... * ... does not always produce a useful backtrace: + `abort();` + $ gdb test core warning: core file may not match specified executable file. [New Thread 86678] @@ -74,6 +76,8 @@ one... #6 0x0109de59 in abort () at abort.c:88 #7 0x0804849f in main () + `char *foo = 0; *foo = 1;` + $ gdb test core Program terminated with signal 11, Segmentation fault. warning: Wrong size fpregset in core file. @@ -85,6 +89,8 @@ one... stack_end=0x1023e5c) at libc-start.c:251 #2 0x080483d1 in _start () + `raise (SIGABRT);` + $ gdb a.out core warning: core file may not match specified executable file. [New Thread 76651] |