| .. | .. |
|---|
| 3 | 3 | #define _PARISC_MSGBUF_H |
|---|
| 4 | 4 | |
|---|
| 5 | 5 | #include <asm/bitsperlong.h> |
|---|
| 6 | +#include <asm/ipcbuf.h> |
|---|
| 6 | 7 | |
|---|
| 7 | 8 | /* |
|---|
| 8 | 9 | * The msqid64_ds structure for parisc architecture, copied from sparc. |
|---|
| .. | .. |
|---|
| 16 | 17 | struct msqid64_ds { |
|---|
| 17 | 18 | struct ipc64_perm msg_perm; |
|---|
| 18 | 19 | #if __BITS_PER_LONG == 64 |
|---|
| 19 | | - __kernel_time_t msg_stime; /* last msgsnd time */ |
|---|
| 20 | | - __kernel_time_t msg_rtime; /* last msgrcv time */ |
|---|
| 21 | | - __kernel_time_t msg_ctime; /* last change time */ |
|---|
| 20 | + long msg_stime; /* last msgsnd time */ |
|---|
| 21 | + long msg_rtime; /* last msgrcv time */ |
|---|
| 22 | + long msg_ctime; /* last change time */ |
|---|
| 22 | 23 | #else |
|---|
| 23 | 24 | unsigned long msg_stime_high; |
|---|
| 24 | 25 | unsigned long msg_stime; /* last msgsnd time */ |
|---|