| .. | .. |
|---|
| 5 | 5 | #if !defined(__x86_64__) || !defined(__ILP32__) |
|---|
| 6 | 6 | #include <asm-generic/msgbuf.h> |
|---|
| 7 | 7 | #else |
|---|
| 8 | + |
|---|
| 9 | +#include <asm/ipcbuf.h> |
|---|
| 10 | + |
|---|
| 8 | 11 | /* |
|---|
| 9 | 12 | * The msqid64_ds structure for x86 architecture with x32 ABI. |
|---|
| 10 | 13 | * |
|---|
| .. | .. |
|---|
| 15 | 18 | |
|---|
| 16 | 19 | struct msqid64_ds { |
|---|
| 17 | 20 | struct ipc64_perm msg_perm; |
|---|
| 18 | | - __kernel_time_t msg_stime; /* last msgsnd time */ |
|---|
| 19 | | - __kernel_time_t msg_rtime; /* last msgrcv time */ |
|---|
| 20 | | - __kernel_time_t msg_ctime; /* last change time */ |
|---|
| 21 | + __kernel_long_t msg_stime; /* last msgsnd time */ |
|---|
| 22 | + __kernel_long_t msg_rtime; /* last msgrcv time */ |
|---|
| 23 | + __kernel_long_t msg_ctime; /* last change time */ |
|---|
| 21 | 24 | __kernel_ulong_t msg_cbytes; /* current number of bytes on queue */ |
|---|
| 22 | 25 | __kernel_ulong_t msg_qnum; /* number of messages in queue */ |
|---|
| 23 | 26 | __kernel_ulong_t msg_qbytes; /* max number of bytes on queue */ |
|---|