| Commit | Line | Data |
|---|---|---|
| 9a2a824d SK |
1 | mqueue.h |
| 2 | ||
| 3 | int mq_close(mqd_t); | |
| 4 | int mq_getattr(mqd_t, struct mq_attr *); | |
| 5 | int mq_notify(mqd_t, const struct sigevent *); | |
| 6 | mqd_t mq_open(const char *, int, ...); | |
| 7 | ssize_t mq_receive(mqd_t, char *, size_t, unsigned *); | |
| 8 | int mq_send(mqd_t, const char *, size_t, unsigned ); | |
| 9 | int mq_setattr(mqd_t, const struct mq_attr *restrict, struct mq_attr *restrict); | |
| 10 | ssize_t mq_timedreceive(mqd_t, char *restrict, size_t, unsigned *restrict, const struct timespec *restrict); | |
| 11 | int mq_timedsend(mqd_t, const char *, size_t, unsigned , const struct timespec *); | |
| 12 | int mq_unlink(const char *); |