msq.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. struct msqid_ds
  29. {
  30. struct ipc_perm msg_perm; /* structure describing operation permission */
  31. __time_t msg_stime; /* time of last msgsnd command */
  32. unsigned long int __uclibc_unused1;
  33. __time_t msg_rtime; /* time of last msgrcv command */
  34. unsigned long int __uclibc_unused2;
  35. __time_t msg_ctime; /* time of last change */
  36. unsigned long int __uclibc_unused3;
  37. unsigned long int __msg_cbytes; /* current number of bytes on queue */
  38. msgqnum_t msg_qnum; /* number of messages currently on queue */
  39. msglen_t msg_qbytes; /* max number of bytes allowed on queue */
  40. __pid_t msg_lspid; /* pid of last msgsnd() */
  41. __pid_t msg_lrpid; /* pid of last msgrcv() */
  42. unsigned long int __uclibc_unused4;
  43. unsigned long int __uclibc_unused5;
  44. };
  45. #ifdef __USE_MISC
  46. # define msg_cbytes __msg_cbytes
  47. /* ipcs ctl commands */
  48. # define MSG_STAT 11
  49. # define MSG_INFO 12
  50. /* buffer for msgctl calls IPC_INFO, MSG_INFO */
  51. struct msginfo
  52. {
  53. int msgpool;
  54. int msgmap;
  55. int msgmax;
  56. int msgmnb;
  57. int msgmni;
  58. int msgssz;
  59. int msgtql;
  60. unsigned short int msgseg;
  61. };
  62. #endif /* __USE_MISC */