msq.h 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. struct msqid_ds
  30. {
  31. struct ipc_perm msg_perm; /* structure describing operation permission */
  32. #if (__WORDSIZE == 32) && !defined(__MIPSEL__)
  33. unsigned long __unused1;
  34. #endif
  35. __time_t msg_stime; /* time of last msgsnd command */
  36. #if (__WORDSIZE == 32) && defined(__MIPSEL__)
  37. unsigned long __unused1;
  38. #endif
  39. #if (__WORDSIZE == 32) && !defined(__MIPSEL__)
  40. unsigned long __unused2;
  41. #endif
  42. __time_t msg_rtime; /* time of last msgrcv command */
  43. #if (__WORDSIZE == 32) && defined(__MIPSEL__)
  44. unsigned long __unused2;
  45. #endif
  46. #if (__WORDSIZE == 32) && !defined(__MIPSEL__)
  47. unsigned long __unused3;
  48. #endif
  49. __time_t msg_ctime; /* time of last change */
  50. #if (__WORDSIZE == 32) && defined(__MIPSEL__)
  51. unsigned long __unused3;
  52. #endif
  53. unsigned long int __msg_cbytes; /* current number of bytes on queue */
  54. msgqnum_t msg_qnum; /* number of messages currently on queue */
  55. msglen_t msg_qbytes; /* max number of bytes allowed on queue */
  56. __pid_t msg_lspid; /* pid of last msgsnd() */
  57. __pid_t msg_lrpid; /* pid of last msgrcv() */
  58. unsigned long int __uclibc_unused4;
  59. unsigned long int __uclibc_unused5;
  60. };
  61. #ifdef __USE_MISC
  62. # define msg_cbytes __msg_cbytes
  63. /* ipcs ctl commands */
  64. # define MSG_STAT 11
  65. # define MSG_INFO 12
  66. /* buffer for msgctl calls IPC_INFO, MSG_INFO */
  67. struct msginfo
  68. {
  69. int msgpool;
  70. int msgmap;
  71. int msgmax;
  72. int msgmnb;
  73. int msgmni;
  74. int msgssz;
  75. int msgtql;
  76. unsigned short int msgseg;
  77. };
  78. #endif /* __USE_MISC */