blob: f8c066b38488114216324f79874234ae2c224b19 (
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
|
BEGIN {
eval { require Config; import Config };
if ($@) {
print "1..0 # Skip: no Config\n";
exit(0);
}
if ($Config{extensions} !~ m!\bIPC/SysV\b!) {
print "1..0 # Skip: no SysV IPC\n";
exit(0);
}
}
use IPC::SysV qw(IPC_PRIVATE IPC_RMID IPC_NOWAIT IPC_STAT S_IRWXU S_IRWXG S_IRWXO);
use IPC::Msg;
#Creating a message queue
print "1..9\n";
$msq = new IPC::Msg(IPC_PRIVATE, S_IRWXU | S_IRWXG | S_IRWXO)
|| die "msgget: ",$!+0," $!\n";
print "ok 1\n";
#Putting a message on the queue
$msgtype = 1;
$msg = "hello";
$msq->snd($msgtype,$msg,0) || print "not ";
print "ok 2\n";
#Check if there are messages on the queue
$ds = $msq->stat() or print "not ";
print "ok 3\n";
print "not " unless $ds && $ds->qnum() == 1;
print "ok 4\n";
#Retreiving a message from the queue
$rmsgtype = 0; # Give me any type
$rmsgtype = $msq->rcv($rmsg,256,$rmsgtype,IPC_NOWAIT) || print "not ";
print "ok 5\n";
print "not " unless $rmsgtype == $msgtype && $rmsg eq $msg;
print "ok 6\n";
$ds = $msq->stat() or print "not ";
print "ok 7\n";
print "not " unless $ds && $ds->qnum() == 0;
print "ok 8\n";
$msq->remove || print "not ";
print "ok 9\n";
|