msq.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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, write to the Free
  13. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  14. 02111-1307 USA. */
  15. #ifndef _SYS_MSG_H
  16. # error "Never use <bits/msq.h> directly; include <sys/msg.h> instead."
  17. #endif
  18. #include <bits/types.h>
  19. #include <bits/wordsize.h>
  20. /* Define options for message queue functions. */
  21. #define MSG_NOERROR 010000 /* no error if message is too big */
  22. #ifdef __USE_GNU
  23. # define MSG_EXCEPT 020000 /* recv any msg except of specified type */
  24. #endif
  25. /* Types used in the structure definition. */
  26. typedef unsigned long int msgqnum_t;
  27. typedef unsigned long int msglen_t;
  28. /* Structure of record for one message inside the kernel.
  29. The type `struct msg' is opaque. */
  30. struct msqid_ds
  31. {
  32. struct ipc_perm msg_perm; /* structure describing operation permission */
  33. #if (__WORDSIZE == 32) && !defined(__MIPSEL__)
  34. unsigned long __unused1;
  35. #endif
  36. __time_t msg_stime; /* time of last msgsnd command */
  37. #if (__WORDSIZE == 32) && defined(__MIPSEL__)
  38. unsigned long __unused1;
  39. #endif
  40. #if (__WORDSIZE == 32) && !defined(__MIPSEL__)
  41. unsigned long __unused2;
  42. #endif
  43. __time_t msg_rtime; /* time of last msgrcv command */
  44. #if (__WORDSIZE == 32) && defined(__MIPSEL__)
  45. unsigned long __unused2;
  46. #endif
  47. #if (__WORDSIZE == 32) && !defined(__MIPSEL__)
  48. unsigned long __unused3;
  49. #endif
  50. __time_t msg_ctime; /* time of last change */
  51. #if (__WORDSIZE == 32) && defined(__MIPSEL__)
  52. unsigned long __unused3;
  53. #endif
  54. unsigned long int __msg_cbytes; /* current number of bytes on queue */
  55. msgqnum_t msg_qnum; /* number of messages currently on queue */
  56. msglen_t msg_qbytes; /* max number of bytes allowed on queue */
  57. __pid_t msg_lspid; /* pid of last msgsnd() */
  58. __pid_t msg_lrpid; /* pid of last msgrcv() */
  59. unsigned long int __unused4;
  60. unsigned long int __unused5;
  61. };
  62. #ifdef __USE_MISC
  63. # define msg_cbytes __msg_cbytes
  64. /* ipcs ctl commands */
  65. # define MSG_STAT 11
  66. # define MSG_INFO 12
  67. /* buffer for msgctl calls IPC_INFO, MSG_INFO */
  68. struct msginfo
  69. {
  70. int msgpool;
  71. int msgmap;
  72. int msgmax;
  73. int msgmnb;
  74. int msgmni;
  75. int msgssz;
  76. int msgtql;
  77. unsigned short int msgseg;
  78. };
  79. #endif /* __USE_MISC */