Linux核心数据结构--ipc_perm

此结构描叙对一个系统V IPC对象的存取权限。

struct ipc_perm

{

  key_t  key;


  ushort uid;   /* owner euid and egid */

  ushort gid;

  ushort cuid;  /* creator euid and egid */

  ushort cgid;

  ushort mode; /* access modes see mode flags below */

  ushort seq;   /* sequence number */

};


你可能感兴趣的:(数据结构,linux,Access)