NAME

ExtUtils::Typemaps::SigSet - A typemap for dealing with POSIX::SigSet

VERSION

version 0.009

SYNOPSIS

use ExtUtils::Typemaps::SigSet;
# First, read my own type maps:
my $private_map = ExtUtils::Typemaps->new(file => 'my.map');

# Then, get the SigSet typemap and merge it into my maps
my $map = ExtUtils::Typemaps::SigSet->new;
$private_map->merge(typemap => $map);

# Now, write the combined map to an output file
$private_map->write(file => 'typemap');

DESCRIPTION

ExtUtils::Typemaps::SigSet is an ExtUtils::Typemaps subclass maps a POSIX::SigSet object into a sigset_t*. Alternatively, it will convert a signal name/number into a signal set.

AUTHOR

Leon Timmermans <fawaka@gmail.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2024 by Leon Timmermans.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.