shmbuf.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _PARISC_SHMBUF_H
  2. #define _PARISC_SHMBUF_H
  3. /* 
  4.  * The shmid64_ds structure for parisc architecture.
  5.  * Note extra padding because this structure is passed back and forth
  6.  * between kernel and user space.
  7.  *
  8.  * Pad space is left for:
  9.  * - 64-bit time_t to solve y2038 problem
  10.  * - 2 miscellaneous 32-bit values
  11.  */
  12. struct shmid64_ds {
  13. struct ipc64_perm shm_perm; /* operation perms */
  14. unsigned int __pad1;
  15. __kernel_time_t shm_atime; /* last attach time */
  16. unsigned int __pad2;
  17. __kernel_time_t shm_dtime; /* last detach time */
  18. unsigned int __pad3;
  19. __kernel_time_t shm_ctime; /* last change time */
  20. size_t shm_segsz; /* size of segment (bytes) */
  21. __kernel_pid_t shm_cpid; /* pid of creator */
  22. __kernel_pid_t shm_lpid; /* pid of last operator */
  23. unsigned int shm_nattch; /* no. of current attaches */
  24. unsigned int __unused1;
  25. unsigned int __unused2;
  26. };
  27. #ifdef __LP64__
  28. #warning shminfo64 is an undocumented struct
  29. /* The 'unsigned int' (formerly 'unsigned long') data types below will
  30.  * ensure that a 32-bit app calling shmctl(*,IPC_INFO,*) will work on
  31.  * a wide kernel, but if some of these values are meant to contain pointers
  32.  * they may need to be 'long long' instead. -PB
  33.  */
  34. #endif
  35. struct shminfo64 {
  36. unsigned int shmmax;
  37. unsigned int shmmin;
  38. unsigned int shmmni;
  39. unsigned int shmseg;
  40. unsigned int shmall;
  41. unsigned int __unused1;
  42. unsigned int __unused2;
  43. unsigned int __unused3;
  44. unsigned int __unused4;
  45. };
  46. #endif /* _PARISC_SHMBUF_H */