mqueue.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #ifndef _MQUEUE_H
  2. #define _MQUEUE_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #if __STDC_VERSION__ >= 199901L
  7. #define __restrict restrict
  8. #elif !defined(__GNUC__)
  9. #define __restrict
  10. #endif
  11. #define __NEED_size_t
  12. #define __NEED_ssize_t
  13. #define __NEED_pthread_attr_t
  14. #define __NEED_time_t
  15. #define __NEED_struct_timespec
  16. #include <bits/alltypes.h>
  17. typedef int mqd_t;
  18. struct mq_attr {
  19. long mq_flags, mq_maxmsg, mq_msgsize, mq_curmsgs, __unused[4];
  20. };
  21. struct sigevent;
  22. int mq_close(mqd_t);
  23. int mq_getattr(mqd_t, struct mq_attr *);
  24. int mq_notify(mqd_t, const struct sigevent *);
  25. mqd_t mq_open(const char *, int, ...);
  26. ssize_t mq_receive(mqd_t, char *, size_t, unsigned *);
  27. int mq_send(mqd_t, const char *, size_t, unsigned);
  28. int mq_setattr(mqd_t, const struct mq_attr *__restrict, struct mq_attr *__restrict);
  29. ssize_t mq_timedreceive(mqd_t, char *__restrict, size_t, unsigned *__restrict, const struct timespec *__restrict);
  30. int mq_timedsend(mqd_t, const char *, size_t, unsigned, const struct timespec *);
  31. int mq_unlink(const char *);
  32. #ifdef __cplusplus
  33. }
  34. #endif
  35. #endif