diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-08-21 06:49:52 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-08-21 06:49:52 +0000 |
commit | 98cbe360d947b59e7a5eda068581f4cfeb4b99b3 (patch) | |
tree | cea10cb9c398de637781b09112ca635518cf3944 /linuxthreads/semaphore.h | |
parent | 4aebaa6bd906383aca1b7a5e1251b0d1652f9f7c (diff) | |
download | glibc-98cbe360d947b59e7a5eda068581f4cfeb4b99b3.tar glibc-98cbe360d947b59e7a5eda068581f4cfeb4b99b3.tar.gz glibc-98cbe360d947b59e7a5eda068581f4cfeb4b99b3.tar.bz2 glibc-98cbe360d947b59e7a5eda068581f4cfeb4b99b3.zip |
Update.
* misc/sys/cdefs.h: Define __restrict_arr.
* include/sys/time.h: Add restrict where required by AGd4.
* inet/arpa/inet.h: Likewise.
* io/sys/stat.h: Likewise.
* io/sys/statvfs.h: Likewise.
* misc/search.h: Likewise.
* misc/sys/select.h: Likewise.
* posix/glob.h: Likewise.
* posix/regex.h: Likewise.
* posix/spawn.h: Likewise.
* posix/unistd.h: Likewise.
* rt/aio.h: Likewise.
* signal/signal.h: Likewise.
* socket/sys/socket.h: Likewise.
* stdlib/ucontext.h: Likewise.
* streams/stropts.h: Likewise.
* string/string.h: Likewise.
* time/time.h: Likewise.
* time/sys/time.h: Likewise.
* posix/spawn.h: Add declarations for posix_spawnattr_getscheparam
and posix_spawnattr_setscheparam.
* libio/stdio.h: Make cuserid prototype again available for all
XPG versions.
Diffstat (limited to 'linuxthreads/semaphore.h')
-rw-r--r-- | linuxthreads/semaphore.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/linuxthreads/semaphore.h b/linuxthreads/semaphore.h index 583b65ea18..f611f48323 100644 --- a/linuxthreads/semaphore.h +++ b/linuxthreads/semaphore.h @@ -72,7 +72,8 @@ extern int sem_wait (sem_t *__sem) __THROW; #ifdef __USE_XOPEN2K /* Similar to `sem_wait' but wait only until ABSTIME. */ -extern int sem_timedwait (sem_t *__sem, __const struct timespec *__abstime) +extern int sem_timedwait (sem_t *__restrict __sem, + __const struct timespec *__restrict __abstime) __THROW; #endif @@ -83,7 +84,8 @@ extern int sem_trywait (sem_t *__sem) __THROW; extern int sem_post (sem_t *__sem) __THROW; /* Get current value of SEM and store it in *SVAL. */ -extern int sem_getvalue (sem_t *__sem, int *__sval) __THROW; +extern int sem_getvalue (sem_t *__restrict __sem, int *__restrict __sval) + __THROW; __END_DECLS |