blob: 5ac9e5bf71dac2c0cf968d53e2e109d73149a73f (
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
46
47
48
49
50
51
52
53
54
|
#!./perl
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
require Config; import Config;
if ($Config{'ccflags'} !~ /-DUSE_THREADS\b/) {
print "1..0\n";
exit 0;
}
}
$| = 1;
print "1..9\n";
use Thread;
print "ok 1\n";
sub content
{
print shift;
return shift;
}
# create a thread passing args and immedaietly wait for it.
my $t = new Thread \&content,("ok 2\n","ok 3\n");
print $t->join;
# check that lock works ...
{lock $foo;
$t = new Thread sub { lock $foo; print "ok 5\n" };
print "ok 4\n";
}
$t->join;
sub islocked
{
use attrs 'locked';
my $val = shift;
my $ret;
if (@_)
{
$ret = new Thread \&islocked,shift;
sleep 2;
}
print $val;
}
$t = islocked("ok 6\n","ok 7\n");
join $t;
# test that sleep lets other thread run
$t = new Thread \&islocked,"ok 8\n";
sleep 2;
print "ok 9";
join $t;
|