File manager - Edit - /usr/local/cpanel/3rdparty/perl/542/cpanel-lib/x86_64-linux/POSIX/SigAction.pm
Back
# Copyrights 2011-2020 by [Mark Overmeer]. # For other contributors see ChangeLog. # See the manual pages for details on the licensing terms. # Pod stripped from pm file by OODoc 2.02. # This code is part of distribution POSIX-1003. Meta-POD processed with # OODoc into POD and HTML manual-pages. See README.md # Copyright Mark Overmeer. Licensed under the same terms as Perl itself. use warnings; use strict; no warnings 'redefine', 'prototype'; # during release of distribution sub POSIX::SigAction::new { my $class = shift; bless {HANDLER => $_[0], MASK => $_[1], FLAGS => $_[2] || 0, SAFE => 0}, $class; } #--------------------------- # We cannot use a "package" statement, because it confuses CPAN: the # namespace is assigned to the perl core distribution. no warnings 'redefine'; sub POSIX::SigAction::handler($;$) { $_[0]->{HANDLER} = $_[1] if @_ > 1; $_[0]->{HANDLER} } sub POSIX::SigAction::mask($;$) { $_[0]->{MASK} = $_[1] if @_ > 1; $_[0]->{MASK} } sub POSIX::SigAction::flags($;$) { $_[0]->{FLAGS} = $_[1] if @_ > 1; $_[0]->{FLAGS} } sub POSIX::SigAction::safe($;$) { $_[0]->{SAFE} = $_[1] if @_ > 1; $_[0]->{SAFE} } 1;
| ver. 1.4 |
Github
|
.
| PHP 8.1.34 | Generation time: 0.02 |
proxy
|
phpinfo
|
Settings