From: Jarkko Hietaniemi Date: Wed, 18 Jun 2003 09:20:43 +0000 (+0000) Subject: Oops in change #19809. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6ad3409fdb4492a86dd8d15e2f3a8bd098067026;p=p5sagit%2Fp5-mst-13.2.git Oops in change #19809. p4raw-link: @19809 on //depot/perl: 1d81eac947dedbd62bc60aa6d92509cbe424fa3d p4raw-id: //depot/perl@19810 --- diff --git a/ext/POSIX/POSIX.xs b/ext/POSIX/POSIX.xs index 7fc9883..11f74d4 100644 --- a/ext/POSIX/POSIX.xs +++ b/ext/POSIX/POSIX.xs @@ -1250,11 +1250,9 @@ sigaction(sig, optaction, oldaction = 0) * in between. We use sigprocmask() to make it so. */ sigfillset(&sset); -#if 0 RETVAL=sigprocmask(SIG_BLOCK, &sset, &osset); if(RETVAL == -1) XSRETURN_UNDEF; -#endif ENTER; /* Restore signal mask no matter how we exit this block. */ osset_sv = newSVpv((char *)(&osset), sizeof(sigset_t));