From: Paul Eggert Date: Fri, 15 Jul 2011 22:56:13 +0000 (-0700) Subject: * src/dd.c: Remove obsolete comments re POSIX. X-Git-Tag: v8.13~68 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=750fadd5d3a7b053e5a78c9b5144fd36fa64f198;p=thirdparty%2Fcoreutils.git * src/dd.c: Remove obsolete comments re POSIX. --- diff --git a/src/dd.c b/src/dd.c index 3799d75d81..3e75412f54 100644 --- a/src/dd.c +++ b/src/dd.c @@ -45,7 +45,7 @@ proper_name ("Stuart Kemp") /* Use SA_NOCLDSTOP as a proxy for whether the sigaction machinery is - present. SA_NODEFER and SA_RESETHAND are XSI extensions. */ + present. */ #ifndef SA_NOCLDSTOP # define SA_NOCLDSTOP 0 # define sigprocmask(How, Set, Oset) /* empty */ @@ -726,9 +726,6 @@ install_signal_handlers (void) if (sigismember (&caught_signals, SIGINT)) { - /* POSIX 1003.1-2001 says SA_RESETHAND implies SA_NODEFER, - but this is not true on Solaris 8 at least. It doesn't - hurt to use SA_NODEFER here, so leave it in. */ act.sa_handler = interrupt_handler; act.sa_flags = SA_NODEFER | SA_RESETHAND; sigaction (SIGINT, &act, NULL);