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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __PPC64_IPCBUF_H__
  2. #define __PPC64_IPCBUF_H__
  3. /*
  4.  * The ipc64_perm structure for the PPC is identical to kern_ipc_perm
  5.  * as we have always had 32-bit UIDs and GIDs in the kernel.
  6.  *
  7.  * This program is free software; you can redistribute it and/or
  8.  * modify it under the terms of the GNU General Public License
  9.  * as published by the Free Software Foundation; either version
  10.  * 2 of the License, or (at your option) any later version.
  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 int seq;
  21. unsigned int __pad1;
  22. unsigned long __unused1;
  23. unsigned long __unused2;
  24. };
  25. #endif /* __PPC64_IPCBUF_H__ */