| .. | .. |
|---|
| 3 | 3 | #define _PARISC_SEMBUF_H |
|---|
| 4 | 4 | |
|---|
| 5 | 5 | #include <asm/bitsperlong.h> |
|---|
| 6 | +#include <asm/ipcbuf.h> |
|---|
| 6 | 7 | |
|---|
| 7 | 8 | /* |
|---|
| 8 | 9 | * The semid64_ds structure for parisc architecture. |
|---|
| .. | .. |
|---|
| 16 | 17 | struct semid64_ds { |
|---|
| 17 | 18 | struct ipc64_perm sem_perm; /* permissions .. see ipc.h */ |
|---|
| 18 | 19 | #if __BITS_PER_LONG == 64 |
|---|
| 19 | | - __kernel_time_t sem_otime; /* last semop time */ |
|---|
| 20 | | - __kernel_time_t sem_ctime; /* last change time */ |
|---|
| 20 | + long sem_otime; /* last semop time */ |
|---|
| 21 | + long sem_ctime; /* last change time */ |
|---|
| 21 | 22 | #else |
|---|
| 22 | 23 | unsigned long sem_otime_high; |
|---|
| 23 | 24 | unsigned long sem_otime; /* last semop time */ |
|---|