threads
view release on metacpan or search on metacpan
use strict;
use warnings;
BEGIN {
use Config;
if (! $Config{'useithreads'}) {
print("1..0 # SKIP Perl not compiled with 'useithreads'\n");
exit(0);
}
}
use ExtUtils::testlib;
use threads;
BEGIN {
if (! eval 'use threads::shared; 1') {
print("1..0 # SKIP threads::shared not available\n");
exit(0);
}
$| = 1;
print("1..59\n"); ### Number of tests that will be run ###
};
my $TEST;
BEGIN {
share($TEST);
$TEST = 1;
}
ok(1, 'Loaded');
sub ok {
my ($ok, $name) = @_;
lock($TEST);
my $id = $TEST++;
# You have to do it this way or VMS will get confused.
if ($ok) {
print("ok $id - $name\n");
} else {
print("not ok $id - $name\n");
printf("# Failed test at line %d\n", (caller)[2]);
}
return ($ok);
}
### Start of Testing ###
my ($READY, $GO, $DONE) :shared = (0, 0, 0);
sub do_thread
{
{
lock($DONE);
$DONE = 0;
lock($READY);
$READY = 1;
cond_signal($READY);
}
lock($GO);
while (! $GO) {
cond_wait($GO);
}
$GO = 0;
lock($READY);
$READY = 0;
lock($DONE);
$DONE = 1;
cond_signal($DONE);
}
sub wait_until_ready
{
lock($READY);
while (! $READY) {
cond_wait($READY);
}
}
sub thread_go
{
{
lock($GO);
$GO = 1;
cond_signal($GO);
}
{
lock($DONE);
while (! $DONE) {
cond_wait($DONE);
}
}
threads->yield();
sleep(1);
}
( run in 0.615 second using v1.01-cache-2.11-cpan-751830e7986 )