diff options
Diffstat (limited to 'arch/sh/bits/sem.h')
-rw-r--r-- | arch/sh/bits/sem.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/arch/sh/bits/sem.h b/arch/sh/bits/sem.h index d383d4ea..544e3d2a 100644 --- a/arch/sh/bits/sem.h +++ b/arch/sh/bits/sem.h @@ -1,9 +1,9 @@ struct semid_ds { struct ipc_perm sem_perm; - time_t sem_otime; - long __unused1; - time_t sem_ctime; - long __unused2; + unsigned long __sem_otime_lo; + unsigned long __sem_otime_hi; + unsigned long __sem_ctime_lo; + unsigned long __sem_ctime_hi; #if __BYTE_ORDER == __LITTLE_ENDIAN unsigned short sem_nsems; char __sem_nsems_pad[sizeof(long)-sizeof(short)]; @@ -13,4 +13,6 @@ struct semid_ds { #endif long __unused3; long __unused4; + time_t sem_otime; + time_t sem_ctime; }; |