summaryrefslogtreecommitdiff
path: root/xt/channel2_lock.t
blob: 69e37468b40d623526510ec7d4440b371037a5ed (plain)
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
#!/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 task {
    $mutex->lock_exclusive;
    sleep(1) for 1..2;
    $mutex->unlock;
}
sub task2 {
    $mutex->lock_exclusive2;
    sleep(1) for 1..2;
    $mutex->unlock2;
}

sub spawn {
    my $pid = fork;
    task(), exit() if $pid == 0;
    return $pid;
}
sub spawn2 {
    my $pid = fork;
    task2(), exit() if $pid == 0;
    return $pid;
}

my $start = time;
my @pids  = map { spawn(), spawn2() } 1..3;

waitpid($_, 0) for @pids;

my $success = (time - $start > 3) ? 1 : 0;
is($success, 1, 'mutex lock_exclusive2');

done_testing;