diff options
Diffstat (limited to 'libc/sysdeps/linux')
-rw-r--r-- | libc/sysdeps/linux/alpha/bits/sem.h | 4 | ||||
-rw-r--r-- | libc/sysdeps/linux/common/bits/sem.h | 4 | ||||
-rw-r--r-- | libc/sysdeps/linux/mips/bits/sem.h | 4 | ||||
-rw-r--r-- | libc/sysdeps/linux/sparc/bits/sem.h | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/libc/sysdeps/linux/alpha/bits/sem.h b/libc/sysdeps/linux/alpha/bits/sem.h index 794092c3c..f63360b2b 100644 --- a/libc/sysdeps/linux/alpha/bits/sem.h +++ b/libc/sysdeps/linux/alpha/bits/sem.h @@ -39,8 +39,8 @@ struct semid_ds { struct ipc_perm sem_perm; /* operation permission struct */ - __kernel_time_t sem_otime; /* last semop() time */ - __kernel_time_t sem_ctime; /* last time changed by semctl() */ + __time_t sem_otime; /* last semop() time */ + __time_t sem_ctime; /* last time changed by semctl() */ unsigned long int sem_nsems; /* number of semaphores in set */ unsigned long int __unused1; unsigned long int __unused2; diff --git a/libc/sysdeps/linux/common/bits/sem.h b/libc/sysdeps/linux/common/bits/sem.h index 64ff76498..6193501e2 100644 --- a/libc/sysdeps/linux/common/bits/sem.h +++ b/libc/sysdeps/linux/common/bits/sem.h @@ -39,9 +39,9 @@ struct semid_ds { struct ipc_perm sem_perm; /* operation permission struct */ - __kernel_time_t sem_otime; /* last semop() time */ + __time_t sem_otime; /* last semop() time */ unsigned long int __unused1; - __kernel_time_t sem_ctime; /* last time changed by semctl() */ + __time_t sem_ctime; /* last time changed by semctl() */ unsigned long int __unused2; unsigned long int sem_nsems; /* number of semaphores in set */ unsigned long int __unused3; diff --git a/libc/sysdeps/linux/mips/bits/sem.h b/libc/sysdeps/linux/mips/bits/sem.h index a2d6933ae..6282de9cc 100644 --- a/libc/sysdeps/linux/mips/bits/sem.h +++ b/libc/sysdeps/linux/mips/bits/sem.h @@ -39,8 +39,8 @@ struct semid_ds { struct ipc_perm sem_perm; /* operation permission struct */ - __kernel_time_t sem_otime; /* last semop() time */ - __kernel_time_t sem_ctime; /* last time changed by semctl() */ + __time_t sem_otime; /* last semop() time */ + __time_t sem_ctime; /* last time changed by semctl() */ unsigned long int sem_nsems; /* number of semaphores in set */ unsigned long int __unused1; unsigned long int __unused2; diff --git a/libc/sysdeps/linux/sparc/bits/sem.h b/libc/sysdeps/linux/sparc/bits/sem.h index a24c5673d..288076510 100644 --- a/libc/sysdeps/linux/sparc/bits/sem.h +++ b/libc/sysdeps/linux/sparc/bits/sem.h @@ -43,11 +43,11 @@ struct semid_ds #if __WORDSIZE == 32 unsigned int __pad1; #endif - __kernel_time_t sem_otime; /* last semop() time */ + __time_t sem_otime; /* last semop() time */ #if __WORDSIZE == 32 unsigned int __pad2; #endif - __kernel_time_t sem_ctime; /* last time changed by semctl() */ + __time_t sem_ctime; /* last time changed by semctl() */ unsigned long int sem_nsems; /* number of semaphores in set */ unsigned long int __unused1; unsigned long int __unused2; |