about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/sparc/sparc32/struct_kernel_msqid64_ds.h
blob: 69a63ee27a6ab26aaa0f5ec61c9ce0816145aec0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* Analogous to kernel struct msqid64_ds used on msgctl.  */
struct kernel_msqid64_ds
{
  struct ipc_perm msg_perm;
  unsigned long msg_stime_high;
  unsigned long msg_stime;
  unsigned long msg_rtime_high;
  unsigned long msg_rtime;
  unsigned long msg_ctime_high;
  unsigned long msg_ctime;
  unsigned long msg_cbytes;
  unsigned long msg_qnum;
  unsigned long msg_qbytes;
  __pid_t msg_lspid;
  __pid_t msg_lrpid;
  unsigned long __unused1;
  unsigned long __unused2;
};