msq.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /* Copyright (C) 1995, 1996, 1997, 2000 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. /* Define options for message queue functions. */
  19. #define MSG_NOERROR 010000 /* no error if message is too big */
  20. #ifdef __USE_GNU
  21. # define MSG_EXCEPT 020000 /* recv any msg except of specified type */
  22. #endif
  23. /* Types used in the structure definition. */
  24. typedef unsigned long int msgqnum_t;
  25. typedef unsigned long int msglen_t;
  26. /* Structure of record for one message inside the kernel.
  27. The type `struct msg' is opaque. */
  28. /* parisc places the upper half of each 64-bit time value BEFORE the word that
  29. holds the value itself -- see arch/parisc/include/uapi/asm/{msgbuf,sembuf,
  30. shmbuf}.h. The generic layout in libc/sysdeps/linux/common/bits has it the
  31. other way round, which shifted every time field by one word: msgctl() and
  32. semctl() returned the always-zero upper half, so uClibc reported 1970.
  33. The structure is spelled out once per configuration rather than stitched
  34. together with conditionals inside it. With a 32-bit time_t the field sits
  35. where the kernel's lower word is and the upper one is padding; with a 64-bit
  36. time_t the kernel's two words are kept as the pair it writes, _internal_1
  37. being the lower half, and msgctl()/semctl()/shmctl() compose the value
  38. behind the end of the kernel's structure as
  39. "_internal_1 | _internal_2 << 32". */
  40. #if (__WORDSIZE == 32 && defined(__UCLIBC_USE_TIME64__))
  41. struct msqid_ds
  42. {
  43. struct ipc_perm msg_perm; /* structure describing operation permission */
  44. unsigned long int msg_stime_internal_2; /* time of last msgsnd command */
  45. unsigned long int msg_stime_internal_1;
  46. unsigned long int msg_rtime_internal_2; /* time of last msgrcv command */
  47. unsigned long int msg_rtime_internal_1;
  48. unsigned long int msg_ctime_internal_2; /* time of last change */
  49. unsigned long int msg_ctime_internal_1;
  50. unsigned long int __msg_cbytes; /* current number of bytes on queue */
  51. msgqnum_t msg_qnum; /* number of messages currently on queue */
  52. msglen_t msg_qbytes; /* max number of bytes allowed on queue */
  53. __pid_t msg_lspid; /* pid of last msgsnd() */
  54. __pid_t msg_lrpid; /* pid of last msgrcv() */
  55. /* The kernel fills only the pairs above. msgctl() composes the __time_t
  56. fields below from them once the call has returned -- and only then,
  57. because the kernel's copy still covers the first of them. */
  58. __time_t msg_stime;
  59. __time_t msg_rtime;
  60. __time_t msg_ctime;
  61. unsigned long int __uclibc_unused4;
  62. unsigned long int __uclibc_unused5;
  63. };
  64. # define __MSQID_DS_TIME64_SPLIT 1
  65. #else
  66. struct msqid_ds
  67. {
  68. struct ipc_perm msg_perm; /* structure describing operation permission */
  69. unsigned int __uclibc_pad1;
  70. __time_t msg_stime; /* time of last msgsnd command */
  71. unsigned int __uclibc_pad2;
  72. __time_t msg_rtime; /* time of last msgrcv command */
  73. unsigned int __uclibc_pad3;
  74. __time_t msg_ctime; /* time of last change */
  75. unsigned long int __msg_cbytes; /* current number of bytes on queue */
  76. msgqnum_t msg_qnum; /* number of messages currently on queue */
  77. msglen_t msg_qbytes; /* max number of bytes allowed on queue */
  78. __pid_t msg_lspid; /* pid of last msgsnd() */
  79. __pid_t msg_lrpid; /* pid of last msgrcv() */
  80. unsigned long int __uclibc_unused4;
  81. unsigned long int __uclibc_unused5;
  82. };
  83. #endif
  84. #ifdef __USE_MISC
  85. # define msg_cbytes __msg_cbytes
  86. /* ipcs ctl commands */
  87. # define MSG_STAT 11
  88. # define MSG_INFO 12
  89. /* buffer for msgctl calls IPC_INFO, MSG_INFO */
  90. struct msginfo
  91. {
  92. int msgpool;
  93. int msgmap;
  94. int msgmax;
  95. int msgmnb;
  96. int msgmni;
  97. int msgssz;
  98. int msgtql;
  99. unsigned short int msgseg;
  100. };
  101. #endif /* __USE_MISC */