Path: blob/master/arch/parisc/include/asm/ipcbuf.h
10819 views
#ifndef __PARISC_IPCBUF_H__1#define __PARISC_IPCBUF_H__23/*4* The ipc64_perm structure for PA-RISC is almost identical to5* kern_ipc_perm as we have always had 32-bit UIDs and GIDs in the kernel.6* 'seq' has been changed from long to int so that it's the same size7* on 64-bit kernels as on 32-bit ones.8*/910struct ipc64_perm11{12key_t key;13uid_t uid;14gid_t gid;15uid_t cuid;16gid_t cgid;17unsigned short int __pad1;18mode_t mode;19unsigned short int __pad2;20unsigned short int seq;21unsigned int __pad3;22unsigned long long int __unused1;23unsigned long long int __unused2;24};2526#endif /* __PARISC_IPCBUF_H__ */272829