msq.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. /* The kernel keeps the upper half of each time field in a separate word on
  29. 32-bit targets -- see asm-generic/msgbuf.h -- and a single long on 64-bit
  30. ones, where the pad words below must not exist. */
  31. struct msqid_ds
  32. {
  33. struct ipc_perm msg_perm; /* structure describing operation permission */
  34. #if (__WORDSIZE == 32 && defined(__UCLIBC_USE_TIME64__))
  35. unsigned long int msg_stime_internal_1;
  36. unsigned long int msg_stime_internal_2;
  37. unsigned long int msg_rtime_internal_1;
  38. unsigned long int msg_rtime_internal_2;
  39. unsigned long int msg_ctime_internal_1;
  40. unsigned long int msg_ctime_internal_2;
  41. #else
  42. __time_t msg_stime; /* time of last msgsnd command */
  43. # if __WORDSIZE == 32
  44. unsigned long int __uclibc_unused1;
  45. # endif
  46. __time_t msg_rtime; /* time of last msgrcv command */
  47. # if __WORDSIZE == 32
  48. unsigned long int __uclibc_unused2;
  49. # endif
  50. __time_t msg_ctime; /* time of last change */
  51. # if __WORDSIZE == 32
  52. unsigned long int __uclibc_unused3;
  53. # endif
  54. #endif
  55. unsigned long int __msg_cbytes; /* current number of bytes on queue */
  56. msgqnum_t msg_qnum; /* number of messages currently on queue */
  57. msglen_t msg_qbytes; /* max number of bytes allowed on queue */
  58. __pid_t msg_lspid; /* pid of last msgsnd() */
  59. __pid_t msg_lrpid; /* pid of last msgrcv() */
  60. #if (__WORDSIZE == 32 && defined(__UCLIBC_USE_TIME64__))
  61. __time_t msg_stime; /* time of last msgsnd command */
  62. __time_t msg_rtime; /* time of last msgrcv command */
  63. __time_t msg_ctime; /* time of last change */
  64. # define __MSQID_DS_TIME64_SPLIT 1
  65. #endif
  66. unsigned long int __uclibc_unused4;
  67. unsigned long int __uclibc_unused5;
  68. };
  69. #ifdef __USE_MISC
  70. # define msg_cbytes __msg_cbytes
  71. /* ipcs ctl commands */
  72. # define MSG_STAT 11
  73. # define MSG_INFO 12
  74. /* buffer for msgctl calls IPC_INFO, MSG_INFO */
  75. struct msginfo
  76. {
  77. int msgpool;
  78. int msgmap;
  79. int msgmax;
  80. int msgmnb;
  81. int msgmni;
  82. int msgssz;
  83. int msgtql;
  84. unsigned short int msgseg;
  85. };
  86. #endif /* __USE_MISC */