summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorAristotle Pagaltzis <pagaltzis@gmx.de>2011-09-01 10:49:05 +0200
committerNicholas Clark <nick@ccl4.org>2011-09-01 21:54:11 +0200
commitb0ac411b6a087a98e7889f7422454bf55a39b658 (patch)
tree5503e007228ff69c4c11ea3f0ef31e7973de39e1 /ext
parent3bc0fa4978bae95dee4324ce01a7f1e91e396c61 (diff)
downloadperl-b0ac411b6a087a98e7889f7422454bf55a39b658.tar.gz
In POSIX.pm, modernise package variable style.
Diffstat (limited to 'ext')
-rw-r--r--ext/POSIX/lib/POSIX.pm17
1 files changed, 8 insertions, 9 deletions
diff --git a/ext/POSIX/lib/POSIX.pm b/ext/POSIX/lib/POSIX.pm
index e89aed74d1..05a474c13a 100644
--- a/ext/POSIX/lib/POSIX.pm
+++ b/ext/POSIX/lib/POSIX.pm
@@ -57,10 +57,11 @@ use AutoLoader 'AUTOLOAD';
use Tie::Hash;
-use vars qw($SIGACTION_FLAGS $_SIGRTMIN $_SIGRTMAX $_sigrtn @ISA);
-@POSIX::SigRt::ISA = qw(Tie::StdHash);
+our @ISA = qw(Tie::StdHash);
-$SIGACTION_FLAGS = 0;
+our ($_SIGRTMIN, $_SIGRTMAX, $_sigrtn);
+
+our $SIGACTION_FLAGS = 0;
tie %POSIX::SIGRT, 'POSIX::SigRt';
@@ -751,7 +752,7 @@ sub utime {
}
sub load_imports {
-%EXPORT_TAGS = (
+our %EXPORT_TAGS = (
assert_h => [qw(assert NDEBUG)],
@@ -908,10 +909,10 @@ sub load_imports {
@export{map {@$_} values %EXPORT_TAGS} = ();
# Doing the de-dup with a temporary hash has the advantage that the SVs in
# @EXPORT are actually shared hash key scalars, which will save some memory.
- push @EXPORT, keys %export;
+ our @EXPORT = keys %export;
}
-@EXPORT_OK = qw(
+our @EXPORT_OK = qw(
abs
alarm
atan2
@@ -1020,9 +1021,7 @@ sub _check {
sub new {
my ($rtsig, $handler, $flags) = @_;
my $sigset = POSIX::SigSet->new($rtsig);
- my $sigact = POSIX::SigAction->new($handler,
- $sigset,
- $flags);
+ my $sigact = POSIX::SigAction->new($handler, $sigset, $flags);
POSIX::sigaction($rtsig, $sigact);
}