in reply to Re^3: Hoping for some beady eyes on my first CPAN submission
in thread Hoping for some beady eyes on my first CPAN submission
Although only the "use" does not signal the problem, when you put it on kill(), it hangs. Same thing for SIGKILL...C:\>perl -e "use POSIX qw(:sys_wait_h SIGHUP SIGKILL); my $child_pid; if(!($child_pid = fork())) { exit(0); } kill(SIGKILL, $child_pid);" Your vendor has not defined POSIX macro SIGHUP, used at -e line 1
C:\> perl -v This is perl, v5.8.8 built for MSWin32-x86-multi-thread (with 50 registered patches, see perl -V for more detail) Binary build 820 [274739] provided by ActiveState
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Hoping for some beady eyes on my first CPAN submission
by aufflick (Deacon) on Jun 24, 2007 at 00:57 UTC |