#ifndef __PARISC_IPCBUF_H__#define __PARISC_IPCBUF_H__/* * The ipc64_perm structure for PA-RISC is almost identical to * kern_ipc_perm as we have always had 32-bit UIDs and GIDs in the kernel. * 'seq' has been changed from long to int so that it's the same size * on 64-bit kernels as on 32-bit ones. */structipc64_perm{key_tkey;uid_tuid;gid_tgid;uid_tcuid;gid_tcgid;unsignedshortint__pad1;mode_tmode;unsignedshortint__pad2;unsignedshortintseq;unsignedint__pad3;unsignedlonglongint__unused1;unsignedlonglongint__unused2;};#endif /* __PARISC_IPCBUF_H__ */