diff options
author | anders@broadcom.com <anders@broadcom.com> | 2001-03-07 06:35:24 -0800 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-03-09 01:47:16 +0000 |
commit | 1dfe7606714789cb685cd524877388fe1e9008b4 (patch) | |
tree | ed3519776a3dfc75e7f504e2f5ac10d21a5c1d2b /ext/POSIX/POSIX.pm | |
parent | 3a57e0bb0403a797d32021f5aeec1a7881541f1e (diff) | |
download | perl-1dfe7606714789cb685cd524877388fe1e9008b4.tar.gz |
A modified version of
Subject: [ID 20010307.005] POSIX::sigaction has various problems
Message-Id: <200103072235.OAA25368@dt-sj1-130.sj.broadcom.com>
Currently the sigaction.t test #6 fails (and is fudged to look
like an "ok") in Linux (at least in Debian 2.2 Linux 2.4.2 x86).
This may well be a genuine bug in Linux sigaction() (since at
least Tru64, Solaris, and HP-UX disagree with Linux).
Anyone with POSIX / SUSv2 tome handy? The problem is that
the flags of the oldaction don't match with the flags in
the previously installed disposition.
p4raw-id: //depot/perl@9086
Diffstat (limited to 'ext/POSIX/POSIX.pm')
-rw-r--r-- | ext/POSIX/POSIX.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/POSIX/POSIX.pm b/ext/POSIX/POSIX.pm index e1e6b28e40..2ec44f8846 100644 --- a/ext/POSIX/POSIX.pm +++ b/ext/POSIX/POSIX.pm @@ -6,7 +6,7 @@ use AutoLoader; use XSLoader (); -our $VERSION = "1.03" ; +our $VERSION = "1.04" ; # Grandfather old foo_h form to new :foo_h form my $loaded; |