1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use Time::HiRes 'time';
use MCE::Mutex;
my $mutex = MCE::Mutex->new( impl => 'Channel2' );
is($mutex->impl(), 'Channel2', 'implementation name');
sub task1a {
$mutex->lock_exclusive;
sleep(1) for 1..2;
$mutex->unlock;
}
sub task1b {
my $guard = $mutex->guard_lock;
sleep(1) for 1..2;
}
sub spawn1 {
my ($i) = @_;
my $pid = fork;
if ($pid == 0) {
task1a() if ($i % 2 != 0);
task1b() if ($i % 2 == 0);
exit();
}
return $pid;
}
sub task2a {
$mutex->lock_exclusive2;
sleep(1) for 1..2;
$mutex->unlock2;
}
sub task2b {
my $guard = $mutex->guard_lock2;
sleep(1) for 1..2;
}
sub spawn2 {
my ($i) = @_;
my $pid = fork;
if ($pid == 0) {
task2a() if ($i % 2 != 0);
task2b() if ($i % 2 == 0);
exit();
}
return $pid;
}
my $start = time;
my @pids = map { spawn1($_), spawn2($_) } 1..3;
waitpid($_, 0) for @pids;
my $success = (time - $start > 3) ? 1 : 0;
is($success, 1, 'mutex lock_exclusive2');
done_testing;
|