shmbuf.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. #ifndef __ASM_GENERIC_SHMBUF_H
  3. #define __ASM_GENERIC_SHMBUF_H
  4. #include <asm/bitsperlong.h>
  5. #include <asm/ipcbuf.h>
  6. #include <asm/posix_types.h>
  7. /*
  8. * The shmid64_ds structure for x86 architecture.
  9. * Note extra padding because this structure is passed back and forth
  10. * between kernel and user space.
  11. *
  12. * shmid64_ds was originally meant to be architecture specific, but
  13. * everyone just ended up making identical copies without specific
  14. * optimizations, so we may just as well all use the same one.
  15. *
  16. * 64 bit architectures use a 64-bit long time field here, while
  17. * 32 bit architectures have a pair of unsigned long values.
  18. * On big-endian systems, the lower half is in the wrong place.
  19. *
  20. *
  21. * Pad space is left for:
  22. * - 2 miscellaneous 32-bit values
  23. */
  24. struct shmid64_ds {
  25. struct ipc64_perm shm_perm; /* operation perms */
  26. __kernel_size_t shm_segsz; /* size of segment (bytes) */
  27. #if __BITS_PER_LONG == 64
  28. long shm_atime; /* last attach time */
  29. long shm_dtime; /* last detach time */
  30. long shm_ctime; /* last change time */
  31. #else
  32. unsigned long shm_atime; /* last attach time */
  33. unsigned long shm_atime_high;
  34. unsigned long shm_dtime; /* last detach time */
  35. unsigned long shm_dtime_high;
  36. unsigned long shm_ctime; /* last change time */
  37. unsigned long shm_ctime_high;
  38. #endif
  39. __kernel_pid_t shm_cpid; /* pid of creator */
  40. __kernel_pid_t shm_lpid; /* pid of last operator */
  41. unsigned long shm_nattch; /* no. of current attaches */
  42. unsigned long __unused4;
  43. unsigned long __unused5;
  44. };
  45. struct shminfo64 {
  46. unsigned long shmmax;
  47. unsigned long shmmin;
  48. unsigned long shmmni;
  49. unsigned long shmseg;
  50. unsigned long shmall;
  51. unsigned long __unused1;
  52. unsigned long __unused2;
  53. unsigned long __unused3;
  54. unsigned long __unused4;
  55. };
  56. #endif /* __ASM_GENERIC_SHMBUF_H */