On Tue, 19 Jul 2005, Jarkko Hietaniemi wrote: > The attached patch introduces %POSIX::SIGRT which gives access > to the POSIX real time signals SIGRTMIN...SIGRTMAX, with the > right POSIXly moves. It also plugs a hole the size of a coredump > I accidentally run into while fooling around with the patch, try > > perl -MPOSIX -e 'sigaction(123,0)'
One portability nit: The #define NSIG logic has to come *after* #include "unixish.h" in perl.h, because that's where <signal.h> gets included. It's good to see you leaving behind such messy topics as cross-compilation and locales, and doing something clean and portable, like signals :-). Cheers, Andy Dougherty [EMAIL PROTECTED]