summaryrefslogtreecommitdiff
path: root/ext/POSIX
diff options
context:
space:
mode:
authorArtur Bergman <sky@nanisky.com>2002-02-05 14:50:36 +0000
committerArtur Bergman <sky@nanisky.com>2002-02-05 14:50:36 +0000
commitbb2834fe59c17df7e7a30c6fffa67d5ab0746603 (patch)
tree08a3e433af17d26bfb785809b0a8c34c22f8fb51 /ext/POSIX
parentebc501f0d71ea004ab6861cc2b4fb1f7e49fd2ae (diff)
downloadperl-bb2834fe59c17df7e7a30c6fffa67d5ab0746603.tar.gz
Add in change for Apple/Darwin Bug: 2785519 to fix memory leaks.
p4raw-id: //depot/perl@14562
Diffstat (limited to 'ext/POSIX')
-rw-r--r--ext/POSIX/t/posix.t1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/POSIX/t/posix.t b/ext/POSIX/t/posix.t
index 3e00af5d14..d73dae0745 100644
--- a/ext/POSIX/t/posix.t
+++ b/ext/POSIX/t/posix.t
@@ -62,6 +62,7 @@ SKIP: {
SKIP: {
skip("no kill() support on Mac OS", 4) if $Is_MacOS;
+ print "# warning, darwin seems to loose blocked signals (failing test 10)\n" if($^O eq 'darwin');
my $mask = new POSIX::SigSet &SIGINT;
my $action = new POSIX::SigAction 'main::SigHUP', $mask, 0;
sigaction(&SIGHUP, $action);