sigset_new#
Create a POSIX::SigSet object, optionally pre-populated with the given signal numbers.
Σύνοψη#
use POSIX qw(SIGINT SIGTERM);
my $set = POSIX::SigSet->new(SIGINT, SIGTERM);
Τι επιστρέφεται#
A blessed POSIX::SigSet reference, with sigemptyset applied first and then each argument added via sigaddset.
Διαφορές από το upstream#
Fully compatible with upstream POSIX.
Δείτε επίσης#
addset,delset,emptyset,fillset,ismember- mutate or query the set.sigprocmask- install aSigSetas the process mask.