#ifndef _ASM_SHMBUF_H#define _ASM_SHMBUF_H/* * The shmid64_ds structure for the MIPS architecture. * Note extra padding because this structure is passed back and forth * between kernel and user space. * * Pad space is left for: * - 2 miscellaneous 32-bit rsp. 64-bit values */structshmid64_ds{structipc64_permshm_perm;/* operation perms */size_tshm_segsz;/* size of segment (bytes) */__kernel_time_tshm_atime;/* last attach time */__kernel_time_tshm_dtime;/* last detach time */__kernel_time_tshm_ctime;/* last change time */__kernel_pid_tshm_cpid;/* pid of creator */__kernel_pid_tshm_lpid;/* pid of last operator */unsignedlongshm_nattch;/* no. of current attaches */unsignedlong__unused1;unsignedlong__unused2;};structshminfo64{unsignedlongshmmax;unsignedlongshmmin;unsignedlongshmmni;unsignedlongshmseg;unsignedlongshmall;unsignedlong__unused1;unsignedlong__unused2;unsignedlong__unused3;unsignedlong__unused4;};#endif /* _ASM_SHMBUF_H */