-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathmsg_recv.cpp
71 lines (61 loc) · 1.25 KB
/
msg_recv.cpp
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
66
67
68
69
70
71
//
// Created by jxq on 19-8-12.
//
// p25 system v消息队列(二)
#include <unistd.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/msg.h>
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#define ERR_EXIT(m) \
do \
{ \
perror(m); \
exit(EXIT_FAILURE); \
} while (0);
int main(int argc, char** argv)
{
int flag = 0;
int type = 0;
int opt;
while (1)
{
opt = getopt(argc, argv, "nt:");
if (opt == '?')
{
exit(EXIT_FAILURE);
}
if (opt == -1)
{
break;
}
switch (opt)
{
case 'n':
flag |= IPC_NOWAIT;
break;
case 't':
type = atoi(optarg);
break;
}
}
int msgid;
msgid = msgget(1234, 0);
if (msgid == -1)
{
ERR_EXIT("msgget");
}
struct msgbuf *ptr;
ptr = (struct msgbuf*) malloc(sizeof(long) + 8192);
ptr->mtype = type;
//msgrcv( msqid, &buf1, recvlength ,3,0 ) ;
int n;
if ((n = msgrcv(msgid, ptr, 8192, type, flag)) < 0)
{
ERR_EXIT("msgsnd");
}
printf("type=%d, bytes=%d\n", ptr->mtype, (int)n) ;
return 0;
}