diff options
author | wollman <wollman@FreeBSD.org> | 2002-07-10 16:35:02 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 2002-07-10 16:35:02 +0000 |
commit | 7e0fbbed95f45e43e9431721cad5b8275e3b6bb0 (patch) | |
tree | d3b23985e164e33d2fae71a375264d4747317978 /lib | |
parent | ddb988fd9f507be42ef56c1b97430520a65026a7 (diff) | |
download | FreeBSD-src-7e0fbbed95f45e43e9431721cad5b8275e3b6bb0.zip FreeBSD-src-7e0fbbed95f45e43e9431721cad5b8275e3b6bb0.tar.gz |
Fix some comments.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/stdlib/abort.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/libc/stdlib/abort.c b/lib/libc/stdlib/abort.c index e85332a..2adb081 100644 --- a/lib/libc/stdlib/abort.c +++ b/lib/libc/stdlib/abort.c @@ -45,6 +45,7 @@ __FBSDID("$FreeBSD$"); void (*__cleanup)(); +/* XXX - why are these declarations here? */ extern int __sys_sigprocmask(int, const sigset_t *, sigset_t *); extern int __sys_sigaction(int, const struct sigaction *, struct sigaction *); @@ -55,22 +56,23 @@ abort() struct sigaction act; /* - * POSIX requires we flush stdio buffers on abort + * POSIX requires we flush stdio buffers on abort. + * XXX ISO C requires that abort() be async-signal-safe. */ if (__cleanup) (*__cleanup)(); sigfillset(&act.sa_mask); /* - * don't block SIGABRT to give any handler a chance; we ignore - * any errors -- X311J doesn't allow abort to return anyway. + * Don't block SIGABRT to give any handler a chance; we ignore + * any errors -- ISO C doesn't allow abort to return anyway. */ sigdelset(&act.sa_mask, SIGABRT); (void)__sys_sigprocmask(SIG_SETMASK, &act.sa_mask, NULL); (void)kill(getpid(), SIGABRT); /* - * if SIGABRT ignored, or caught and the handler returns, do + * If SIGABRT was ignored, or caught and the handler returns, do * it again, only harder. */ act.sa_handler = SIG_DFL; |