diff options
author | Ondřej Bílka <neleai@seznam.cz> | 2013-11-26 12:29:20 +0100 |
---|---|---|
committer | Ondřej Bílka <neleai@seznam.cz> | 2013-11-26 12:32:28 +0100 |
commit | d1d9eaf478b7d3a11a599c120498b79fe5629a61 (patch) | |
tree | 47bc37ce2eddc0e89daf81a0650a332066d59541 /sysdeps/unix/sysv/linux/bits/sem.h | |
parent | 246b27983b908a241f025ccc2afe87a9e6f32203 (diff) | |
download | glibc-d1d9eaf478b7d3a11a599c120498b79fe5629a61.tar glibc-d1d9eaf478b7d3a11a599c120498b79fe5629a61.tar.gz glibc-d1d9eaf478b7d3a11a599c120498b79fe5629a61.tar.bz2 glibc-d1d9eaf478b7d3a11a599c120498b79fe5629a61.zip |
Use __glibc_reserved instead __unused.
Diffstat (limited to 'sysdeps/unix/sysv/linux/bits/sem.h')
-rw-r--r-- | sysdeps/unix/sysv/linux/bits/sem.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/unix/sysv/linux/bits/sem.h b/sysdeps/unix/sysv/linux/bits/sem.h index 62f5407415..26ea325a19 100644 --- a/sysdeps/unix/sysv/linux/bits/sem.h +++ b/sysdeps/unix/sysv/linux/bits/sem.h @@ -39,12 +39,12 @@ struct semid_ds { struct ipc_perm sem_perm; /* operation permission struct */ __time_t sem_otime; /* last semop() time */ - unsigned long int __unused1; + unsigned long int __glibc_reserved1; __time_t sem_ctime; /* last time changed by semctl() */ - unsigned long int __unused2; + unsigned long int __glibc_reserved2; unsigned long int sem_nsems; /* number of semaphores in set */ - unsigned long int __unused3; - unsigned long int __unused4; + unsigned long int __glibc_reserved3; + unsigned long int __glibc_reserved4; }; /* The user should define a union like the following to use it for arguments |