mqueue.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /* Copyright (C) 2004-2026 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with the GNU C Library; if not, see
  13. <https://www.gnu.org/licenses/>. */
  14. #ifndef _MQUEUE_H
  15. #define _MQUEUE_H 1
  16. #include <features.h>
  17. #include <sys/types.h>
  18. #include <fcntl.h>
  19. #include <bits/types/sigevent_t.h>
  20. #include <bits/types/struct_timespec.h>
  21. /* Get the definition of mqd_t and struct mq_attr. */
  22. #include <bits/mqueue.h>
  23. __BEGIN_DECLS
  24. /* Establish connection between a process and a message queue NAME and
  25. return message queue descriptor or (mqd_t) -1 on error. OFLAG determines
  26. the type of access used. If O_CREAT is on OFLAG, the third argument is
  27. taken as a `mode_t', the mode of the created message queue, and the fourth
  28. argument is taken as `struct mq_attr *', pointer to message queue
  29. attributes. If the fourth argument is NULL, default attributes are
  30. used. */
  31. extern mqd_t mq_open (const char *__name, int __oflag, ...)
  32. __THROW __nonnull ((1));
  33. /* Removes the association between message queue descriptor MQDES and its
  34. message queue. */
  35. extern int mq_close (mqd_t __mqdes) __THROW;
  36. /* Query status and attributes of message queue MQDES. */
  37. extern int mq_getattr (mqd_t __mqdes, struct mq_attr *__mqstat)
  38. __THROW __nonnull ((2));
  39. /* Set attributes associated with message queue MQDES and if OMQSTAT is
  40. not NULL also query its old attributes. */
  41. extern int mq_setattr (mqd_t __mqdes,
  42. const struct mq_attr *__restrict __mqstat,
  43. struct mq_attr *__restrict __omqstat)
  44. __THROW __nonnull ((2));
  45. /* Remove message queue named NAME. */
  46. extern int mq_unlink (const char *__name) __THROW __nonnull ((1));
  47. /* Register notification issued upon message arrival to an empty
  48. message queue MQDES. */
  49. extern int mq_notify (mqd_t __mqdes, const struct sigevent *__notification)
  50. __THROW;
  51. /* Receive the oldest from highest priority messages in message queue
  52. MQDES. */
  53. extern ssize_t mq_receive (mqd_t __mqdes, char *__msg_ptr, size_t __msg_len,
  54. unsigned int *__msg_prio) __nonnull ((2));
  55. /* Add message pointed by MSG_PTR to message queue MQDES. */
  56. extern int mq_send (mqd_t __mqdes, const char *__msg_ptr, size_t __msg_len,
  57. unsigned int __msg_prio) __nonnull ((2));
  58. #ifdef __USE_XOPEN2K
  59. # ifndef __USE_TIME64_REDIRECTS
  60. /* Receive the oldest from highest priority messages in message queue
  61. MQDES, stop waiting if ABS_TIMEOUT expires. */
  62. extern ssize_t mq_timedreceive (mqd_t __mqdes, char *__restrict __msg_ptr,
  63. size_t __msg_len,
  64. unsigned int *__restrict __msg_prio,
  65. const struct timespec *__restrict __abs_timeout)
  66. __nonnull ((2, 5));
  67. /* Add message pointed by MSG_PTR to message queue MQDES, stop blocking
  68. on full message queue if ABS_TIMEOUT expires. */
  69. extern int mq_timedsend (mqd_t __mqdes, const char *__msg_ptr,
  70. size_t __msg_len, unsigned int __msg_prio,
  71. const struct timespec *__abs_timeout)
  72. __nonnull ((2, 5));
  73. # else
  74. # ifdef __REDIRECT
  75. extern int __REDIRECT (mq_timedreceive, (mqd_t __mqdes,
  76. char *__restrict __msg_ptr,
  77. size_t __msg_len,
  78. unsigned int *__restrict __msg_prio,
  79. const struct timespec *__restrict __abs_timeout),
  80. __mq_timedreceive_time64)
  81. __nonnull ((2, 5));
  82. extern int __REDIRECT (mq_timedsend, (mqd_t __mqdes,
  83. const char *__msg_ptr, size_t __msg_len,
  84. unsigned int __msg_prio,
  85. const struct timespec *__abs_timeout),
  86. __mq_timedsend_time64)
  87. __nonnull ((2, 5));
  88. # else
  89. # define mq_timedreceive __mq_timedreceive_time64
  90. # define mq_timedsend __mq_timedsend_time64
  91. # endif
  92. # endif
  93. #endif
  94. /* Define some inlines helping to catch common problems. */
  95. #if __USE_FORTIFY_LEVEL > 0 && defined __fortify_function
  96. # include <bits/mqueue2.h>
  97. #endif
  98. __END_DECLS
  99. #endif /* mqueue.h */