.. | .. |
---|
2 | 2 | #ifndef _ASM_POWERPC_MSGBUF_H |
---|
3 | 3 | #define _ASM_POWERPC_MSGBUF_H |
---|
4 | 4 | |
---|
| 5 | +#include <asm/ipcbuf.h> |
---|
| 6 | + |
---|
5 | 7 | /* |
---|
6 | 8 | * The msqid64_ds structure for the PowerPC architecture. |
---|
7 | 9 | * Note extra padding because this structure is passed back and forth |
---|
.. | .. |
---|
11 | 13 | struct msqid64_ds { |
---|
12 | 14 | struct ipc64_perm msg_perm; |
---|
13 | 15 | #ifdef __powerpc64__ |
---|
14 | | - __kernel_time_t msg_stime; /* last msgsnd time */ |
---|
15 | | - __kernel_time_t msg_rtime; /* last msgrcv time */ |
---|
16 | | - __kernel_time_t msg_ctime; /* last change time */ |
---|
| 16 | + long msg_stime; /* last msgsnd time */ |
---|
| 17 | + long msg_rtime; /* last msgrcv time */ |
---|
| 18 | + long msg_ctime; /* last change time */ |
---|
17 | 19 | #else |
---|
18 | 20 | unsigned long msg_stime_high; |
---|
19 | 21 | unsigned long msg_stime; /* last msgsnd time */ |
---|