msq.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /* Copyright (C) 1995-2026 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. <https://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. /* Types used in the structure definition. */
  21. typedef unsigned short int msgqnum_t;
  22. typedef unsigned short int msglen_t;
  23. /* Structure of record for one message inside the kernel.
  24. The type `struct __msg' is opaque. */
  25. struct msqid_ds
  26. {
  27. struct ipc_perm msg_perm; /* structure describing operation permission */
  28. __time_t msg_stime; /* time of last msgsnd command */
  29. __time_t msg_rtime; /* time of last msgrcv command */
  30. __time_t msg_ctime; /* time of last change */
  31. msgqnum_t msg_qnum; /* number of messages currently on queue */
  32. msglen_t msg_qbytes; /* max number of bytes allowed on queue */
  33. __pid_t msg_lspid; /* pid of last msgsnd() */
  34. __pid_t msg_lrpid; /* pid of last msgrcv() */
  35. };