ipc.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /* Copyright (C) 1995-1999, 2000 Free Software Foundation, Inc.
  2. The GNU C Library is free software; you can redistribute it and/or
  3. modify it under the terms of the GNU Lesser General Public
  4. License as published by the Free Software Foundation; either
  5. version 2.1 of the License, or (at your option) any later version.
  6. The GNU C Library is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  9. Lesser General Public License for more details.
  10. You should have received a copy of the GNU Lesser General Public
  11. License along with the GNU C Library; if not, see
  12. <http://www.gnu.org/licenses/>. */
  13. #ifndef _SYS_IPC_H
  14. # error "Never use <bits/ipc.h> directly; include <sys/ipc.h> instead."
  15. #endif
  16. #include <bits/types.h>
  17. /* Mode bits for `msgget', `semget', and `shmget'. */
  18. #define IPC_CREAT 01000 /* Create key if key does not exist. */
  19. #define IPC_EXCL 02000 /* Fail if key exists. */
  20. #define IPC_NOWAIT 04000 /* Return error on wait. */
  21. /* Control commands for `msgctl', `semctl', and `shmctl'. */
  22. #define IPC_RMID 0 /* Remove identifier. */
  23. #define IPC_SET 1 /* Set `ipc_perm' options. */
  24. #define IPC_STAT 2 /* Get `ipc_perm' options. */
  25. #ifdef __USE_GNU
  26. # define IPC_INFO 3 /* See ipcs. */
  27. #endif
  28. /* Special key values. */
  29. #define IPC_PRIVATE ((__key_t) 0) /* Private key. */
  30. /* Data structure used to pass permission information to IPC operations. */
  31. struct ipc_perm
  32. {
  33. __key_t __key; /* Key. */
  34. __uid_t uid; /* Owner's user ID. */
  35. __gid_t gid; /* Owner's group ID. */
  36. __uid_t cuid; /* Creator's user ID. */
  37. __gid_t cgid; /* Creator's group ID. */
  38. unsigned short int __pad1;
  39. unsigned short int mode; /* Read/write permission. */
  40. unsigned short int __pad2;
  41. unsigned short int __seq; /* Sequence number. */
  42. unsigned long long int __uclibc_unused1;
  43. unsigned long long int __uclibc_unused2;
  44. };