msq.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. /* Copyright (C) 2002 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. <http://www.gnu.org/licenses/>. */
  14. #ifndef _SYS_MSG_H
  15. # error "Never use <bits/msq.h> directly; include <sys/msg.h> instead."
  16. #endif
  17. #include <bits/types.h>
  18. #include <bits/wordsize.h>
  19. /* Define options for message queue functions. */
  20. #define MSG_NOERROR 010000 /* no error if message is too big */
  21. #ifdef __USE_GNU
  22. # define MSG_EXCEPT 020000 /* recv any msg except of specified type */
  23. #endif
  24. /* Types used in the structure definition. */
  25. typedef unsigned long int msgqnum_t;
  26. typedef unsigned long int msglen_t;
  27. /* Structure of record for one message inside the kernel.
  28. The type `struct msg' is opaque. */
  29. #if (__WORDSIZE == 32) && defined(__MIPSEL__)
  30. struct msqid_ds
  31. {
  32. struct ipc_perm msg_perm; /* structure describing operation permission */
  33. # if defined(__UCLIBC_USE_TIME64__)
  34. unsigned long msg_stime_internal_1; /* time of last msgsnd command */
  35. unsigned long msg_stime_internal_2;
  36. unsigned long msg_rtime_internal_1; /* time of last msgrcv command */
  37. unsigned long msg_rtime_internal_2;
  38. unsigned long msg_ctime_internal_1; /* time of last change */
  39. unsigned long msg_ctime_internal_2;
  40. # else
  41. __time_t msg_stime;
  42. unsigned long int __uclibc_unused1;
  43. __time_t msg_rtime;
  44. unsigned long int __uclibc_unused2;
  45. __time_t msg_ctime;
  46. unsigned long int __uclibc_unused3;
  47. # endif
  48. unsigned long int __msg_cbytes; /* current number of bytes on queue */
  49. msgqnum_t msg_qnum; /* number of messages currently on queue */
  50. msglen_t msg_qbytes; /* max number of bytes allowed on queue */
  51. __pid_t msg_lspid; /* pid of last msgsnd() */
  52. __pid_t msg_lrpid; /* pid of last msgrcv() */
  53. unsigned long int __uclibc_unused4;
  54. unsigned long int __uclibc_unused5;
  55. # if defined(__UCLIBC_USE_TIME64__)
  56. __time_t msg_stime;
  57. __time_t msg_rtime;
  58. __time_t msg_ctime;
  59. # endif
  60. };
  61. #elif (__WORDSIZE == 32) && defined(__MIPSEB__)
  62. struct msqid_ds
  63. {
  64. struct ipc_perm msg_perm; /* structure describing operation permission */
  65. # if defined(__UCLIBC_USE_TIME64__)
  66. unsigned long msg_stime_internal_2; /* time of last msgsnd command */
  67. unsigned long msg_stime_internal_1;
  68. unsigned long msg_rtime_internal_2; /* time of last msgrcv command */
  69. unsigned long msg_rtime_internal_1;
  70. unsigned long msg_ctime_internal_2; /* time of last change */
  71. unsigned long msg_ctime_internal_1;
  72. # else
  73. unsigned long int __uclibc_unused1;
  74. __time_t msg_stime;
  75. unsigned long int __uclibc_unused2;
  76. __time_t msg_rtime;
  77. unsigned long int __uclibc_unused3;
  78. __time_t msg_ctime;
  79. # endif
  80. unsigned long int __msg_cbytes; /* current number of bytes on queue */
  81. msgqnum_t msg_qnum; /* number of messages currently on queue */
  82. msglen_t msg_qbytes; /* max number of bytes allowed on queue */
  83. __pid_t msg_lspid; /* pid of last msgsnd() */
  84. __pid_t msg_lrpid; /* pid of last msgrcv() */
  85. unsigned long int __uclibc_unused4;
  86. unsigned long int __uclibc_unused5;
  87. # if defined(__UCLIBC_USE_TIME64__)
  88. __time_t msg_stime;
  89. __time_t msg_rtime;
  90. __time_t msg_ctime;
  91. # endif
  92. };
  93. #else
  94. struct msqid_ds
  95. {
  96. struct ipc_perm msg_perm; /* structure describing operation permission */
  97. __time_t msg_stime; /* time of last msgsnd command */
  98. __time_t msg_rtime; /* time of last msgrcv command */
  99. __time_t msg_ctime; /* time of last change */
  100. unsigned long int __msg_cbytes; /* current number of bytes on queue */
  101. msgqnum_t msg_qnum; /* number of messages currently on queue */
  102. msglen_t msg_qbytes; /* max number of bytes allowed on queue */
  103. __pid_t msg_lspid; /* pid of last msgsnd() */
  104. __pid_t msg_lrpid; /* pid of last msgrcv() */
  105. unsigned long int __uclibc_unused4;
  106. unsigned long int __uclibc_unused5;
  107. };
  108. #endif
  109. #ifdef __USE_MISC
  110. # define msg_cbytes __msg_cbytes
  111. /* ipcs ctl commands */
  112. # define MSG_STAT 11
  113. # define MSG_INFO 12
  114. /* buffer for msgctl calls IPC_INFO, MSG_INFO */
  115. struct msginfo
  116. {
  117. int msgpool;
  118. int msgmap;
  119. int msgmax;
  120. int msgmnb;
  121. int msgmni;
  122. int msgssz;
  123. int msgtql;
  124. unsigned short int msgseg;
  125. };
  126. #endif /* __USE_MISC */