aboutsummaryrefslogtreecommitdiffstats
path: root/libc/unistd/abort.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/unistd/abort.c')
-rw-r--r--libc/unistd/abort.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libc/unistd/abort.c b/libc/unistd/abort.c
index d4e40e199..f323941ab 100644
--- a/libc/unistd/abort.c
+++ b/libc/unistd/abort.c
@@ -73,10 +73,8 @@ abort(void)
}
/* temporary, for bug hunting */
- debug_log("abort() called in pid %d\n", getpid());
/* seg fault seems to produce better debuggerd results than SIGABRT */
*((char*)0xdeadbaad) = 39;
- debug_log("somehow we're not dead?\n");
/* -- */
(void)kill(getpid(), SIGABRT);