msg.h 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /* Copyright (C) 1995-2016 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. #define _SYS_MSG_H
  16. #include <features.h>
  17. #define __need_size_t
  18. #include <stddef.h>
  19. /* Get common definition of System V style IPC. */
  20. #include <sys/ipc.h>
  21. /* Get system dependent definition of `struct msqid_ds' and more. */
  22. #include <bits/msq.h>
  23. /* Define types required by the standard. */
  24. #define __need_time_t
  25. #include <time.h>
  26. #ifndef __pid_t_defined
  27. typedef __pid_t pid_t;
  28. # define __pid_t_defined
  29. #endif
  30. #ifndef __ssize_t_defined
  31. typedef __ssize_t ssize_t;
  32. # define __ssize_t_defined
  33. #endif
  34. /* The following System V style IPC functions implement a message queue
  35. system. The definition is found in XPG2. */
  36. #ifdef __USE_GNU
  37. /* Template for struct to be used as argument for `msgsnd' and `msgrcv'. */
  38. struct msgbuf
  39. {
  40. __syscall_slong_t mtype; /* type of received/sent message */
  41. char mtext[1]; /* text of the message */
  42. };
  43. #endif
  44. __BEGIN_DECLS
  45. /* Message queue control operation. */
  46. extern int msgctl (int __msqid, int __cmd, struct msqid_ds *__buf) __THROW;
  47. /* Get messages queue. */
  48. extern int msgget (key_t __key, int __msgflg) __THROW;
  49. /* Receive message from message queue.
  50. This function is a cancellation point and therefore not marked with
  51. __THROW. */
  52. extern ssize_t msgrcv (int __msqid, void *__msgp, size_t __msgsz,
  53. long int __msgtyp, int __msgflg);
  54. /* Send message to message queue.
  55. This function is a cancellation point and therefore not marked with
  56. __THROW. */
  57. extern int msgsnd (int __msqid, const void *__msgp, size_t __msgsz,
  58. int __msgflg);
  59. __END_DECLS
  60. #endif /* sys/msg.h */