shm.h 252 B

123456789101112131415
  1. #define SHMLBA 4096
  2. struct shmid_ds
  3. {
  4. struct ipc_perm shm_perm;
  5. size_t shm_segsz;
  6. time_t shm_atime;
  7. time_t shm_dtime;
  8. time_t shm_ctime;
  9. pid_t shm_cpid;
  10. pid_t shm_lpid;
  11. unsigned long shm_nattch;
  12. unsigned long __pad1;
  13. unsigned long __pad2;
  14. };