shm.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /*
  2. * Copyright (C) 2017 Hangzhou C-SKY Microsystems co.,ltd.
  3. *
  4. * Licensed under the LGPL v2.1 or later, see the file COPYING.LIB
  5. * in this tarball.
  6. */
  7. #ifndef _SYS_SHM_H
  8. # error "Never include <bits/shm.h> directly; use <sys/shm.h> instead."
  9. #endif
  10. #include <bits/types.h>
  11. /* Permission flag for shmget. */
  12. #define SHM_R 0400 /* or S_IRUGO from <linux/stat.h> */
  13. #define SHM_W 0200 /* or S_IWUGO from <linux/stat.h> */
  14. /* Flags for `shmat'. */
  15. #define SHM_RDONLY 010000 /* attach read-only else read-write */
  16. #define SHM_RND 020000 /* round attach address to SHMLBA */
  17. #define SHM_REMAP 040000 /* take-over region on attach */
  18. /* Commands for `shmctl'. */
  19. #define SHM_LOCK 11 /* lock segment (root only) */
  20. #define SHM_UNLOCK 12 /* unlock segment (root only) */
  21. __BEGIN_DECLS
  22. /* Segment low boundary address multiple. */
  23. #define SHMLBA (__getpagesize () << 2)
  24. extern int __getpagesize (void) __THROW __attribute__ ((__const__));
  25. /* Type to count number of attaches. */
  26. typedef unsigned long int shmatt_t;
  27. /* Data structure describing a set of semaphores. */
  28. struct shmid_ds
  29. {
  30. struct ipc_perm shm_perm; /* operation permission struct */
  31. size_t shm_segsz; /* size of segment in bytes */
  32. #if defined(__UCLIBC_USE_TIME64__)
  33. unsigned long int __shm_atime_internal_1;
  34. unsigned long int __shm_atime_internal_2;
  35. unsigned long int __shm_dtime_internal_1;
  36. unsigned long int __shm_dtime_internal_2;
  37. unsigned long int __shm_ctime_internal_1;
  38. unsigned long int __shm_ctime_internal_2;
  39. #else
  40. __time_t shm_atime; /* time of last shmat() */
  41. unsigned long int __uclibc_unused1;
  42. __time_t shm_dtime; /* time of last shmdt() */
  43. unsigned long int __uclibc_unused2;
  44. __time_t shm_ctime; /* time of last change by shmctl() */
  45. unsigned long int __uclibc_unused3;
  46. #endif
  47. __pid_t shm_cpid; /* pid of creator */
  48. __pid_t shm_lpid; /* pid of last shmop */
  49. shmatt_t shm_nattch; /* number of current attaches */
  50. unsigned long int __uclibc_unused4;
  51. unsigned long int __uclibc_unused5;
  52. #if defined(__UCLIBC_USE_TIME64__)
  53. __time_t shm_atime; /* time of last shmat() */
  54. __time_t shm_dtime; /* time of last shmdt() */
  55. __time_t shm_ctime; /* time of last change by shmctl() */
  56. # define __SHMID_DS_TIME64_SPLIT 1
  57. #endif
  58. };
  59. #ifdef __USE_MISC
  60. /* ipcs ctl commands */
  61. # define SHM_STAT 13
  62. # define SHM_INFO 14
  63. /* shm_mode upper byte flags */
  64. # define SHM_DEST 01000 /* segment will be destroyed on last detach */
  65. # define SHM_LOCKED 02000 /* segment will not be swapped */
  66. # define SHM_HUGETLB 04000 /* segment is mapped via hugetlb */
  67. # define SHM_NORESERVE 010000 /* don't check for reservations */
  68. struct shminfo
  69. {
  70. unsigned long int shmmax;
  71. unsigned long int shmmin;
  72. unsigned long int shmmni;
  73. unsigned long int shmseg;
  74. unsigned long int shmall;
  75. unsigned long int __uclibc_unused1;
  76. unsigned long int __uclibc_unused2;
  77. unsigned long int __uclibc_unused3;
  78. unsigned long int __uclibc_unused4;
  79. };
  80. struct shm_info
  81. {
  82. int used_ids;
  83. unsigned long int shm_tot; /* total allocated shm */
  84. unsigned long int shm_rss; /* total resident shm */
  85. unsigned long int shm_swp; /* total swapped shm */
  86. unsigned long int swap_attempts;
  87. unsigned long int swap_successes;
  88. };
  89. #endif /* __USE_MISC */
  90. __END_DECLS