1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#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 */