diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-10-17 18:12:30 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-10-17 18:12:30 +0000 |
commit | e3c7892252f5a20589d82c7387c61337b3542e13 (patch) | |
tree | 4cc5844ea40acb207271d933a9df1017c18f2b9e /libc | |
parent | 2d872f2ee8729b78db98cb40a4f6f2337f5b6101 (diff) |
Bypass problem with signals for the moment...
Diffstat (limited to 'libc')
-rw-r--r-- | libc/stdlib/abort.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/stdlib/abort.c b/libc/stdlib/abort.c index 11448bfb9..5fb8be599 100644 --- a/libc/stdlib/abort.c +++ b/libc/stdlib/abort.c @@ -32,11 +32,13 @@ extern void _exit __P((int __status)) __attribute__ ((__noreturn__)); /* Cause an abnormal program termination with core-dump. */ void abort(void) { +#if FIXME sigset_t sigset; if (sigemptyset(&sigset) == 0 && sigaddset(&sigset, SIGABRT) == 0) { sigprocmask(SIG_UNBLOCK, &sigset, (sigset_t *) NULL); } +#endif if (__cleanup) __cleanup(); |