Of course, one doesn't need those newfangled thread thingies.
Here's one that can easily be backported to old versions
of perl, and is using fork() and signals.
#!/usr/bin/perl -w
my $hp = 100;
my $pid;
sub get_hit;
sub get_hit {
unless (-- $hp) {
kill USR2 => $pid or warn "Failed to send victory: $!\n";
print "$$: Arrrgh, I am dying!\n";
exit;
}
print "$$: I got hit! $hp hitpoints left.\n";
$SIG {USR1} = \&get_hit;
}
$SIG {USR1} = \&get_hit;
$SIG {USR2} = sub {print "$$: I won! I won!\n"; exit};
$pid = fork;
die "Fork failed\n" unless defined $pid;
$pid ||= getppid;
while (1) {
my $timeleft = rand 1;
(undef, $timeleft) = select (undef, undef, undef, $timeleft)
while $timeleft;
kill USR1 => $pid; # Ignore errors.
}
__END__
Abigail
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.