• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * This file is auto-generated. Modifications will be lost.
3  *
4  * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/
5  * for more information.
6  */
7 #ifndef __ASM_GENERIC_MSGBUF_H
8 #define __ASM_GENERIC_MSGBUF_H
9 #include <asm/bitsperlong.h>
10 #include <asm/ipcbuf.h>
11 struct msqid64_ds {
12   struct ipc64_perm msg_perm;
13 #if __BITS_PER_LONG == 64
14   long msg_stime;
15   long msg_rtime;
16   long msg_ctime;
17 #else
18   unsigned long msg_stime;
19   unsigned long msg_stime_high;
20   unsigned long msg_rtime;
21   unsigned long msg_rtime_high;
22   unsigned long msg_ctime;
23   unsigned long msg_ctime_high;
24 #endif
25   unsigned long msg_cbytes;
26   unsigned long msg_qnum;
27   unsigned long msg_qbytes;
28   __kernel_pid_t msg_lspid;
29   __kernel_pid_t msg_lrpid;
30   unsigned long __unused4;
31   unsigned long __unused5;
32 };
33 #endif
34