.. | .. |
---|
2 | 2 | #ifndef _SPARC_MSGBUF_H |
---|
3 | 3 | #define _SPARC_MSGBUF_H |
---|
4 | 4 | |
---|
| 5 | +#include <asm/ipcbuf.h> |
---|
| 6 | + |
---|
5 | 7 | /* |
---|
6 | 8 | * The msqid64_ds structure for sparc64 architecture. |
---|
7 | 9 | * Note extra padding because this structure is passed back and forth |
---|
.. | .. |
---|
13 | 15 | struct msqid64_ds { |
---|
14 | 16 | struct ipc64_perm msg_perm; |
---|
15 | 17 | #if defined(__sparc__) && defined(__arch64__) |
---|
16 | | - __kernel_time_t msg_stime; /* last msgsnd time */ |
---|
17 | | - __kernel_time_t msg_rtime; /* last msgrcv time */ |
---|
18 | | - __kernel_time_t msg_ctime; /* last change time */ |
---|
| 18 | + long msg_stime; /* last msgsnd time */ |
---|
| 19 | + long msg_rtime; /* last msgrcv time */ |
---|
| 20 | + long msg_ctime; /* last change time */ |
---|
19 | 21 | #else |
---|
20 | 22 | unsigned long msg_stime_high; |
---|
21 | 23 | unsigned long msg_stime; /* last msgsnd time */ |
---|