#ifndef _ALPHA_MSGBUF_H#define _ALPHA_MSGBUF_H/* * The msqid64_ds structure for alpha architecture. * Note extra padding because this structure is passed back and forth * between kernel and user space. * * Pad space is left for: * - 2 miscellaneous 64-bit values */structmsqid64_ds{structipc64_permmsg_perm;__kernel_time_tmsg_stime;/* last msgsnd time */__kernel_time_tmsg_rtime;/* last msgrcv time */__kernel_time_tmsg_ctime;/* last change time */unsignedlongmsg_cbytes;/* current number of bytes on queue */unsignedlongmsg_qnum;/* number of messages in queue */unsignedlongmsg_qbytes;/* max number of bytes on queue */__kernel_pid_tmsg_lspid;/* pid of last msgsnd */__kernel_pid_tmsg_lrpid;/* last receive pid */unsignedlong__unused1;unsignedlong__unused2;};#endif /* _ALPHA_MSGBUF_H */