ipcbuf.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _ASM_IPCBUF_H
  2. #define _ASM_IPCBUF_H
  3. /*
  4.  * The ipc64_perm structure for alpha 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.  * - 32-bit seq
  10.  * - 2 miscellaneous 64-bit values
  11.  */
  12. struct ipc64_perm
  13. {
  14. __kernel_key_t key;
  15. __kernel_uid_t uid;
  16. __kernel_gid_t gid;
  17. __kernel_uid_t cuid;
  18. __kernel_gid_t cgid;
  19. __kernel_mode_t mode;
  20. unsigned short seq;
  21. unsigned short __pad1;
  22. unsigned long __unused1;
  23. unsigned long __unused2;
  24. };
  25. #endif /* _ASM_IPCBUF_H */