mqueue.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * Copyright (c) 2018 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_POSIX_MQUEUE_H_
  7. #define ZEPHYR_INCLUDE_POSIX_MQUEUE_H_
  8. #include <kernel.h>
  9. #include <posix/time.h>
  10. #include <fcntl.h>
  11. #include "posix_types.h"
  12. #include "sys/stat.h"
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. typedef void *mqd_t;
  17. typedef struct mq_attr {
  18. long mq_flags;
  19. long mq_maxmsg;
  20. long mq_msgsize;
  21. long mq_curmsgs; /* Number of messages currently queued. */
  22. } mq_attr;
  23. mqd_t mq_open(const char *name, int oflags, ...);
  24. int mq_close(mqd_t mqdes);
  25. int mq_unlink(const char *name);
  26. int mq_getattr(mqd_t mqdes, struct mq_attr *mqstat);
  27. int mq_receive(mqd_t mqdes, char *msg_ptr, size_t msg_len,
  28. unsigned int *msg_prio);
  29. int mq_send(mqd_t mqdes, const char *msg_ptr, size_t msg_len,
  30. unsigned int msg_prio);
  31. int mq_setattr(mqd_t mqdes, const struct mq_attr *mqstat,
  32. struct mq_attr *omqstat);
  33. int mq_timedreceive(mqd_t mqdes, char *msg_ptr, size_t msg_len,
  34. unsigned int *msg_prio, const struct timespec *abstime);
  35. int mq_timedsend(mqd_t mqdes, const char *msg_ptr, size_t msg_len,
  36. unsigned int msg_prio, const struct timespec *abstime);
  37. #ifdef __cplusplus
  38. }
  39. #endif
  40. #endif /* ZEPHYR_INCLUDE_POSIX_MQUEUE_H_ */