Is there an alternative module that could be used with ActivePerl in the below coding example from Perl Cookbook (version 1) Solution 16.12 - Sharing Variables in different processes?
This code works fine on my linux box, but the IPC::Shareable module appears to not be available for ActivePerl. Is there a module or method that I could use instead for this example? Is it time to let go of my version 1 book (now three years behind the times) and upgrade to version 2?
Code:
#!/usr/bin/perl
# sharetest - test shared variables across forks.
use IPC::Shareable;
my $buffer;
my $handle = tie $buffer, 'IPC::Shareable', undef, { destroy => 1 };
$SIG{INT} = sub { die "$$ dying\n" };
my @kids;
for (1 .. 10) {
my $child;
unless ($child = fork) { # I'm the child
die "cannot fork: $!" unless defined $child;
squabble();
exit;
}
push @kids, $child; # in case we care about their pids
}
while (1) {
print "Buffer is $buffer\n";
sleep 1;
}
die "Not reached";
sub squabble {
my $i = 0;
while (1) {
next if $buffer =~ /^$$\b/o;
$handle->shlock();
$i++;
$buffer = "$$ $i";
$handle->shunlock();
}
}
1;
__END__
This code works fine on my linux box, but the IPC::Shareable module appears to not be available for ActivePerl. Is there a module or method that I could use instead for this example? Is it time to let go of my version 1 book (now three years behind the times) and upgrade to version 2?