.. | .. |
---|
2 | 2 | #ifndef _ASM_MSGBUF_H |
---|
3 | 3 | #define _ASM_MSGBUF_H |
---|
4 | 4 | |
---|
| 5 | +#include <asm/ipcbuf.h> |
---|
5 | 6 | |
---|
6 | 7 | /* |
---|
7 | 8 | * The msqid64_ds structure for the MIPS architecture. |
---|
.. | .. |
---|
15 | 16 | #if defined(__mips64) |
---|
16 | 17 | struct msqid64_ds { |
---|
17 | 18 | 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 */ |
---|
| 19 | + long msg_stime; /* last msgsnd time */ |
---|
| 20 | + long msg_rtime; /* last msgrcv time */ |
---|
| 21 | + long msg_ctime; /* last change time */ |
---|
21 | 22 | unsigned long msg_cbytes; /* current number of bytes on queue */ |
---|
22 | 23 | unsigned long msg_qnum; /* number of messages in queue */ |
---|
23 | 24 | unsigned long msg_qbytes; /* max number of bytes on queue */ |
---|