-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy path06mqnotify.cpp
84 lines (64 loc) · 1.4 KB
/
06mqnotify.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
72
73
74
75
76
77
78
79
80
81
82
83
84
//
// Created by jxq on 19-8-14.
//
// p34 poxis消息队列
#include <errno.h>
#include <unistd.h>
#include <iostream>
#include <stdio.h>
#include <cstring>
#include <fcntl.h> /* For O_* constants */
#include <sys/stat.h> /* For mode constants */
#include <mqueue.h>
#include<signal.h>
using namespace std;
#define ERR_EXIT(m) \
do \
{ \
perror(m); \
exit(EXIT_FAILURE); \
} while (0);
struct student
{
char name[32];
int age;
};
size_t size;
mqd_t mqid;
struct sigevent sigv;
void handler(int s)
{
mq_notify(mqid, &sigv);
student stu;
if (mq_receive(mqid, (char*)&stu, size, NULL) == -1)
{
ERR_EXIT("mq_receive");
}
printf("student name = %s, age = %d\n", stu.name, stu.age);
}
int main(int argc, char** argv)
{
// mq_overview
mqid = mq_open("/abc", O_RDONLY);
if (mqid == ((mqd_t) -1))
{
ERR_EXIT("mq_open");
}
//printf("mqopen success\n");
struct mq_attr attr;
if (mq_getattr(mqid, &attr) == -1)
{
ERR_EXIT("mq_getattr");
}
size = attr.mq_msgsize;
signal(SIGUSR1, handler); //定义一个信号函数,当SIGALRM信号发过来时,执行handler函数
sigv.sigev_notify = SIGEV_SIGNAL;
sigv.sigev_signo = SIGUSR1;
mq_notify(mqid, &sigv);
while (true)
{
pause();
}
mq_close(mqid);
return 0;
}