blob: f18210ca7112f1b95469dfb236d6ce926d530a19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef _ABIBITS_MQUEUE_H
#define _ABIBITS_MQUEUE_H
#ifdef __cplusplus
extern "C" {
#endif
struct mq_attr {
long mq_flags;
long mq_maxmsg;
long mq_msgsize;
long mq_curmsgs;
long __pad[4];
};
#ifdef __cplusplus
}
#endif
#endif /* _ABIBITS_MQUEUE_H */
|