HPPA: Update pthread.h

Sync from libc pthread.h to get all the recent
changes including the use of const instead of
__const and __NOTHROWNL where appropriate.
This commit is contained in:
Carlos O'Donell 2012-01-08 23:38:50 -05:00
parent 2f4e78942c
commit c27dd89f4b
2 changed files with 69 additions and 67 deletions

View File

@ -1,3 +1,7 @@
2012-01-08 Carlos O'Donell <carlos@systemhalted.org>
* sysdeps/unix/sysv/linux/hppa/nptl/pthread.h: Sync from libc copy.
2012-01-08 Carlos O'Donell <carlos@systemhalted.org> 2012-01-08 Carlos O'Donell <carlos@systemhalted.org>
* sysdeps/unix/sysv/linux/hppa/sys/epoll.h: Use const instead of __const. * sysdeps/unix/sysv/linux/hppa/sys/epoll.h: Use const instead of __const.

View File

@ -1,5 +1,4 @@
/* Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 /* Copyright (C) 2002-2011, 2012 Free Software Foundation, Inc.
Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or The GNU C Library is free software; you can redistribute it and/or
@ -223,9 +222,9 @@ __BEGIN_DECLS
getting passed ARG. Creation attributed come from ATTR. The new getting passed ARG. Creation attributed come from ATTR. The new
handle is stored in *NEWTHREAD. */ handle is stored in *NEWTHREAD. */
extern int pthread_create (pthread_t *__restrict __newthread, extern int pthread_create (pthread_t *__restrict __newthread,
__const pthread_attr_t *__restrict __attr, const pthread_attr_t *__restrict __attr,
void *(*__start_routine) (void *), void *(*__start_routine) (void *),
void *__restrict __arg) __THROW __nonnull ((1, 3)); void *__restrict __arg) __THROWNL __nonnull ((1, 3));
/* Terminate calling thread. /* Terminate calling thread.
@ -253,7 +252,7 @@ extern int pthread_tryjoin_np (pthread_t __th, void **__thread_return) __THROW;
This function is a cancellation point and therefore not marked with This function is a cancellation point and therefore not marked with
__THROW. */ __THROW. */
extern int pthread_timedjoin_np (pthread_t __th, void **__thread_return, extern int pthread_timedjoin_np (pthread_t __th, void **__thread_return,
__const struct timespec *__abstime); const struct timespec *__abstime);
#endif #endif
/* Indicate that the thread TH is never to be joined with PTHREAD_JOIN. /* Indicate that the thread TH is never to be joined with PTHREAD_JOIN.
@ -282,7 +281,7 @@ extern int pthread_attr_destroy (pthread_attr_t *__attr)
__THROW __nonnull ((1)); __THROW __nonnull ((1));
/* Get detach state attribute. */ /* Get detach state attribute. */
extern int pthread_attr_getdetachstate (__const pthread_attr_t *__attr, extern int pthread_attr_getdetachstate (const pthread_attr_t *__attr,
int *__detachstate) int *__detachstate)
__THROW __nonnull ((1, 2)); __THROW __nonnull ((1, 2));
@ -293,7 +292,7 @@ extern int pthread_attr_setdetachstate (pthread_attr_t *__attr,
/* Get the size of the guard area created for stack overflow protection. */ /* Get the size of the guard area created for stack overflow protection. */
extern int pthread_attr_getguardsize (__const pthread_attr_t *__attr, extern int pthread_attr_getguardsize (const pthread_attr_t *__attr,
size_t *__guardsize) size_t *__guardsize)
__THROW __nonnull ((1, 2)); __THROW __nonnull ((1, 2));
@ -304,18 +303,17 @@ extern int pthread_attr_setguardsize (pthread_attr_t *__attr,
/* Return in *PARAM the scheduling parameters of *ATTR. */ /* Return in *PARAM the scheduling parameters of *ATTR. */
extern int pthread_attr_getschedparam (__const pthread_attr_t *__restrict extern int pthread_attr_getschedparam (const pthread_attr_t *__restrict __attr,
__attr,
struct sched_param *__restrict __param) struct sched_param *__restrict __param)
__THROW __nonnull ((1, 2)); __THROW __nonnull ((1, 2));
/* Set scheduling parameters (priority, etc) in *ATTR according to PARAM. */ /* Set scheduling parameters (priority, etc) in *ATTR according to PARAM. */
extern int pthread_attr_setschedparam (pthread_attr_t *__restrict __attr, extern int pthread_attr_setschedparam (pthread_attr_t *__restrict __attr,
__const struct sched_param *__restrict const struct sched_param *__restrict
__param) __THROW __nonnull ((1, 2)); __param) __THROW __nonnull ((1, 2));
/* Return in *POLICY the scheduling policy of *ATTR. */ /* Return in *POLICY the scheduling policy of *ATTR. */
extern int pthread_attr_getschedpolicy (__const pthread_attr_t *__restrict extern int pthread_attr_getschedpolicy (const pthread_attr_t *__restrict
__attr, int *__restrict __policy) __attr, int *__restrict __policy)
__THROW __nonnull ((1, 2)); __THROW __nonnull ((1, 2));
@ -324,7 +322,7 @@ extern int pthread_attr_setschedpolicy (pthread_attr_t *__attr, int __policy)
__THROW __nonnull ((1)); __THROW __nonnull ((1));
/* Return in *INHERIT the scheduling inheritance mode of *ATTR. */ /* Return in *INHERIT the scheduling inheritance mode of *ATTR. */
extern int pthread_attr_getinheritsched (__const pthread_attr_t *__restrict extern int pthread_attr_getinheritsched (const pthread_attr_t *__restrict
__attr, int *__restrict __inherit) __attr, int *__restrict __inherit)
__THROW __nonnull ((1, 2)); __THROW __nonnull ((1, 2));
@ -335,7 +333,7 @@ extern int pthread_attr_setinheritsched (pthread_attr_t *__attr,
/* Return in *SCOPE the scheduling contention scope of *ATTR. */ /* Return in *SCOPE the scheduling contention scope of *ATTR. */
extern int pthread_attr_getscope (__const pthread_attr_t *__restrict __attr, extern int pthread_attr_getscope (const pthread_attr_t *__restrict __attr,
int *__restrict __scope) int *__restrict __scope)
__THROW __nonnull ((1, 2)); __THROW __nonnull ((1, 2));
@ -344,7 +342,7 @@ extern int pthread_attr_setscope (pthread_attr_t *__attr, int __scope)
__THROW __nonnull ((1)); __THROW __nonnull ((1));
/* Return the previously set address for the stack. */ /* Return the previously set address for the stack. */
extern int pthread_attr_getstackaddr (__const pthread_attr_t *__restrict extern int pthread_attr_getstackaddr (const pthread_attr_t *__restrict
__attr, void **__restrict __stackaddr) __attr, void **__restrict __stackaddr)
__THROW __nonnull ((1, 2)) __attribute_deprecated__; __THROW __nonnull ((1, 2)) __attribute_deprecated__;
@ -357,7 +355,7 @@ extern int pthread_attr_setstackaddr (pthread_attr_t *__attr,
__THROW __nonnull ((1)) __attribute_deprecated__; __THROW __nonnull ((1)) __attribute_deprecated__;
/* Return the currently used minimal stack size. */ /* Return the currently used minimal stack size. */
extern int pthread_attr_getstacksize (__const pthread_attr_t *__restrict extern int pthread_attr_getstacksize (const pthread_attr_t *__restrict
__attr, size_t *__restrict __stacksize) __attr, size_t *__restrict __stacksize)
__THROW __nonnull ((1, 2)); __THROW __nonnull ((1, 2));
@ -370,7 +368,7 @@ extern int pthread_attr_setstacksize (pthread_attr_t *__attr,
#ifdef __USE_XOPEN2K #ifdef __USE_XOPEN2K
/* Return the previously set address for the stack. */ /* Return the previously set address for the stack. */
extern int pthread_attr_getstack (__const pthread_attr_t *__restrict __attr, extern int pthread_attr_getstack (const pthread_attr_t *__restrict __attr,
void **__restrict __stackaddr, void **__restrict __stackaddr,
size_t *__restrict __stacksize) size_t *__restrict __stacksize)
__THROW __nonnull ((1, 2, 3)); __THROW __nonnull ((1, 2, 3));
@ -387,12 +385,12 @@ extern int pthread_attr_setstack (pthread_attr_t *__attr, void *__stackaddr,
the processors represented in CPUSET. */ the processors represented in CPUSET. */
extern int pthread_attr_setaffinity_np (pthread_attr_t *__attr, extern int pthread_attr_setaffinity_np (pthread_attr_t *__attr,
size_t __cpusetsize, size_t __cpusetsize,
__const cpu_set_t *__cpuset) const cpu_set_t *__cpuset)
__THROW __nonnull ((1, 3)); __THROW __nonnull ((1, 3));
/* Get bit set in CPUSET representing the processors threads created with /* Get bit set in CPUSET representing the processors threads created with
ATTR can run on. */ ATTR can run on. */
extern int pthread_attr_getaffinity_np (__const pthread_attr_t *__attr, extern int pthread_attr_getaffinity_np (const pthread_attr_t *__attr,
size_t __cpusetsize, size_t __cpusetsize,
cpu_set_t *__cpuset) cpu_set_t *__cpuset)
__THROW __nonnull ((1, 3)); __THROW __nonnull ((1, 3));
@ -411,7 +409,7 @@ extern int pthread_getattr_np (pthread_t __th, pthread_attr_t *__attr)
/* Set the scheduling parameters for TARGET_THREAD according to POLICY /* Set the scheduling parameters for TARGET_THREAD according to POLICY
and *PARAM. */ and *PARAM. */
extern int pthread_setschedparam (pthread_t __target_thread, int __policy, extern int pthread_setschedparam (pthread_t __target_thread, int __policy,
__const struct sched_param *__param) const struct sched_param *__param)
__THROW __nonnull ((3)); __THROW __nonnull ((3));
/* Return in *POLICY and *PARAM the scheduling parameters for TARGET_THREAD. */ /* Return in *POLICY and *PARAM the scheduling parameters for TARGET_THREAD. */
@ -432,7 +430,7 @@ extern int pthread_getname_np (pthread_t __target_thread, char *__buf,
__THROW __nonnull ((2)); __THROW __nonnull ((2));
/* Set thread name visible in the kernel and its interfaces. */ /* Set thread name visible in the kernel and its interfaces. */
extern int pthread_setname_np (pthread_t __target_thread, __const char *__name) extern int pthread_setname_np (pthread_t __target_thread, const char *__name)
__THROW __nonnull ((2)); __THROW __nonnull ((2));
#endif #endif
@ -456,7 +454,7 @@ extern int pthread_yield (void) __THROW;
/* Limit specified thread TH to run only on the processors represented /* Limit specified thread TH to run only on the processors represented
in CPUSET. */ in CPUSET. */
extern int pthread_setaffinity_np (pthread_t __th, size_t __cpusetsize, extern int pthread_setaffinity_np (pthread_t __th, size_t __cpusetsize,
__const cpu_set_t *__cpuset) const cpu_set_t *__cpuset)
__THROW __nonnull ((3)); __THROW __nonnull ((3));
/* Get bit set in CPUSET representing the processors TH can run on. */ /* Get bit set in CPUSET representing the processors TH can run on. */
@ -650,9 +648,9 @@ __pthread_cleanup_routine (struct __pthread_cleanup_frame *__frame)
__pthread_unwind_buf_t __cancel_buf; \ __pthread_unwind_buf_t __cancel_buf; \
void (*__cancel_routine) (void *) = (routine); \ void (*__cancel_routine) (void *) = (routine); \
void *__cancel_arg = (arg); \ void *__cancel_arg = (arg); \
int not_first_call = __sigsetjmp ((struct __jmp_buf_tag *) (void *) \ int __not_first_call = __sigsetjmp ((struct __jmp_buf_tag *) (void *) \
__cancel_buf.__cancel_jmp_buf, 0); \ __cancel_buf.__cancel_jmp_buf, 0); \
if (__builtin_expect (not_first_call, 0)) \ if (__builtin_expect (__not_first_call, 0)) \
{ \ { \
__cancel_routine (__cancel_arg); \ __cancel_routine (__cancel_arg); \
__pthread_unwind_next (&__cancel_buf); \ __pthread_unwind_next (&__cancel_buf); \
@ -685,9 +683,9 @@ extern void __pthread_unregister_cancel (__pthread_unwind_buf_t *__buf)
__pthread_unwind_buf_t __cancel_buf; \ __pthread_unwind_buf_t __cancel_buf; \
void (*__cancel_routine) (void *) = (routine); \ void (*__cancel_routine) (void *) = (routine); \
void *__cancel_arg = (arg); \ void *__cancel_arg = (arg); \
int not_first_call = __sigsetjmp ((struct __jmp_buf_tag *) (void *) \ int __not_first_call = __sigsetjmp ((struct __jmp_buf_tag *) (void *) \
__cancel_buf.__cancel_jmp_buf, 0); \ __cancel_buf.__cancel_jmp_buf, 0); \
if (__builtin_expect (not_first_call, 0)) \ if (__builtin_expect (__not_first_call, 0)) \
{ \ { \
__cancel_routine (__cancel_arg); \ __cancel_routine (__cancel_arg); \
__pthread_unwind_next (&__cancel_buf); \ __pthread_unwind_next (&__cancel_buf); \
@ -731,7 +729,7 @@ extern int __sigsetjmp (struct __jmp_buf_tag *__env, int __savemask) __THROW;
/* Initialize a mutex. */ /* Initialize a mutex. */
extern int pthread_mutex_init (pthread_mutex_t *__mutex, extern int pthread_mutex_init (pthread_mutex_t *__mutex,
__const pthread_mutexattr_t *__mutexattr) const pthread_mutexattr_t *__mutexattr)
__THROW __nonnull ((1)); __THROW __nonnull ((1));
/* Destroy a mutex. */ /* Destroy a mutex. */
@ -740,26 +738,26 @@ extern int pthread_mutex_destroy (pthread_mutex_t *__mutex)
/* Try locking a mutex. */ /* Try locking a mutex. */
extern int pthread_mutex_trylock (pthread_mutex_t *__mutex) extern int pthread_mutex_trylock (pthread_mutex_t *__mutex)
__THROW __nonnull ((1)); __THROWNL __nonnull ((1));
/* Lock a mutex. */ /* Lock a mutex. */
extern int pthread_mutex_lock (pthread_mutex_t *__mutex) extern int pthread_mutex_lock (pthread_mutex_t *__mutex)
__THROW __nonnull ((1)); __THROWNL __nonnull ((1));
#ifdef __USE_XOPEN2K #ifdef __USE_XOPEN2K
/* Wait until lock becomes available, or specified time passes. */ /* Wait until lock becomes available, or specified time passes. */
extern int pthread_mutex_timedlock (pthread_mutex_t *__restrict __mutex, extern int pthread_mutex_timedlock (pthread_mutex_t *__restrict __mutex,
__const struct timespec *__restrict const struct timespec *__restrict
__abstime) __THROW __nonnull ((1, 2)); __abstime) __THROWNL __nonnull ((1, 2));
#endif #endif
/* Unlock a mutex. */ /* Unlock a mutex. */
extern int pthread_mutex_unlock (pthread_mutex_t *__mutex) extern int pthread_mutex_unlock (pthread_mutex_t *__mutex)
__THROW __nonnull ((1)); __THROWNL __nonnull ((1));
/* Get the priority ceiling of MUTEX. */ /* Get the priority ceiling of MUTEX. */
extern int pthread_mutex_getprioceiling (__const pthread_mutex_t * extern int pthread_mutex_getprioceiling (const pthread_mutex_t *
__restrict __mutex, __restrict __mutex,
int *__restrict __prioceiling) int *__restrict __prioceiling)
__THROW __nonnull ((1, 2)); __THROW __nonnull ((1, 2));
@ -795,7 +793,7 @@ extern int pthread_mutexattr_destroy (pthread_mutexattr_t *__attr)
__THROW __nonnull ((1)); __THROW __nonnull ((1));
/* Get the process-shared flag of the mutex attribute ATTR. */ /* Get the process-shared flag of the mutex attribute ATTR. */
extern int pthread_mutexattr_getpshared (__const pthread_mutexattr_t * extern int pthread_mutexattr_getpshared (const pthread_mutexattr_t *
__restrict __attr, __restrict __attr,
int *__restrict __pshared) int *__restrict __pshared)
__THROW __nonnull ((1, 2)); __THROW __nonnull ((1, 2));
@ -807,7 +805,7 @@ extern int pthread_mutexattr_setpshared (pthread_mutexattr_t *__attr,
#if defined __USE_UNIX98 || defined __USE_XOPEN2K8 #if defined __USE_UNIX98 || defined __USE_XOPEN2K8
/* Return in *KIND the mutex kind attribute in *ATTR. */ /* Return in *KIND the mutex kind attribute in *ATTR. */
extern int pthread_mutexattr_gettype (__const pthread_mutexattr_t *__restrict extern int pthread_mutexattr_gettype (const pthread_mutexattr_t *__restrict
__attr, int *__restrict __kind) __attr, int *__restrict __kind)
__THROW __nonnull ((1, 2)); __THROW __nonnull ((1, 2));
@ -819,7 +817,7 @@ extern int pthread_mutexattr_settype (pthread_mutexattr_t *__attr, int __kind)
#endif #endif
/* Return in *PROTOCOL the mutex protocol attribute in *ATTR. */ /* Return in *PROTOCOL the mutex protocol attribute in *ATTR. */
extern int pthread_mutexattr_getprotocol (__const pthread_mutexattr_t * extern int pthread_mutexattr_getprotocol (const pthread_mutexattr_t *
__restrict __attr, __restrict __attr,
int *__restrict __protocol) int *__restrict __protocol)
__THROW __nonnull ((1, 2)); __THROW __nonnull ((1, 2));
@ -831,7 +829,7 @@ extern int pthread_mutexattr_setprotocol (pthread_mutexattr_t *__attr,
__THROW __nonnull ((1)); __THROW __nonnull ((1));
/* Return in *PRIOCEILING the mutex prioceiling attribute in *ATTR. */ /* Return in *PRIOCEILING the mutex prioceiling attribute in *ATTR. */
extern int pthread_mutexattr_getprioceiling (__const pthread_mutexattr_t * extern int pthread_mutexattr_getprioceiling (const pthread_mutexattr_t *
__restrict __attr, __restrict __attr,
int *__restrict __prioceiling) int *__restrict __prioceiling)
__THROW __nonnull ((1, 2)); __THROW __nonnull ((1, 2));
@ -843,11 +841,11 @@ extern int pthread_mutexattr_setprioceiling (pthread_mutexattr_t *__attr,
#ifdef __USE_XOPEN2K #ifdef __USE_XOPEN2K
/* Get the robustness flag of the mutex attribute ATTR. */ /* Get the robustness flag of the mutex attribute ATTR. */
extern int pthread_mutexattr_getrobust (__const pthread_mutexattr_t *__attr, extern int pthread_mutexattr_getrobust (const pthread_mutexattr_t *__attr,
int *__robustness) int *__robustness)
__THROW __nonnull ((1, 2)); __THROW __nonnull ((1, 2));
# ifdef __USE_GNU # ifdef __USE_GNU
extern int pthread_mutexattr_getrobust_np (__const pthread_mutexattr_t *__attr, extern int pthread_mutexattr_getrobust_np (const pthread_mutexattr_t *__attr,
int *__robustness) int *__robustness)
__THROW __nonnull ((1, 2)); __THROW __nonnull ((1, 2));
# endif # endif
@ -870,7 +868,7 @@ extern int pthread_mutexattr_setrobust_np (pthread_mutexattr_t *__attr,
/* Initialize read-write lock RWLOCK using attributes ATTR, or use /* Initialize read-write lock RWLOCK using attributes ATTR, or use
the default values if later is NULL. */ the default values if later is NULL. */
extern int pthread_rwlock_init (pthread_rwlock_t *__restrict __rwlock, extern int pthread_rwlock_init (pthread_rwlock_t *__restrict __rwlock,
__const pthread_rwlockattr_t *__restrict const pthread_rwlockattr_t *__restrict
__attr) __THROW __nonnull ((1)); __attr) __THROW __nonnull ((1));
/* Destroy read-write lock RWLOCK. */ /* Destroy read-write lock RWLOCK. */
@ -879,37 +877,37 @@ extern int pthread_rwlock_destroy (pthread_rwlock_t *__rwlock)
/* Acquire read lock for RWLOCK. */ /* Acquire read lock for RWLOCK. */
extern int pthread_rwlock_rdlock (pthread_rwlock_t *__rwlock) extern int pthread_rwlock_rdlock (pthread_rwlock_t *__rwlock)
__THROW __nonnull ((1)); __THROWNL __nonnull ((1));
/* Try to acquire read lock for RWLOCK. */ /* Try to acquire read lock for RWLOCK. */
extern int pthread_rwlock_tryrdlock (pthread_rwlock_t *__rwlock) extern int pthread_rwlock_tryrdlock (pthread_rwlock_t *__rwlock)
__THROW __nonnull ((1)); __THROWNL __nonnull ((1));
# ifdef __USE_XOPEN2K # ifdef __USE_XOPEN2K
/* Try to acquire read lock for RWLOCK or return after specfied time. */ /* Try to acquire read lock for RWLOCK or return after specfied time. */
extern int pthread_rwlock_timedrdlock (pthread_rwlock_t *__restrict __rwlock, extern int pthread_rwlock_timedrdlock (pthread_rwlock_t *__restrict __rwlock,
__const struct timespec *__restrict const struct timespec *__restrict
__abstime) __THROW __nonnull ((1, 2)); __abstime) __THROWNL __nonnull ((1, 2));
# endif # endif
/* Acquire write lock for RWLOCK. */ /* Acquire write lock for RWLOCK. */
extern int pthread_rwlock_wrlock (pthread_rwlock_t *__rwlock) extern int pthread_rwlock_wrlock (pthread_rwlock_t *__rwlock)
__THROW __nonnull ((1)); __THROWNL __nonnull ((1));
/* Try to acquire write lock for RWLOCK. */ /* Try to acquire write lock for RWLOCK. */
extern int pthread_rwlock_trywrlock (pthread_rwlock_t *__rwlock) extern int pthread_rwlock_trywrlock (pthread_rwlock_t *__rwlock)
__THROW __nonnull ((1)); __THROWNL __nonnull ((1));
# ifdef __USE_XOPEN2K # ifdef __USE_XOPEN2K
/* Try to acquire write lock for RWLOCK or return after specfied time. */ /* Try to acquire write lock for RWLOCK or return after specfied time. */
extern int pthread_rwlock_timedwrlock (pthread_rwlock_t *__restrict __rwlock, extern int pthread_rwlock_timedwrlock (pthread_rwlock_t *__restrict __rwlock,
__const struct timespec *__restrict const struct timespec *__restrict
__abstime) __THROW __nonnull ((1, 2)); __abstime) __THROWNL __nonnull ((1, 2));
# endif # endif
/* Unlock RWLOCK. */ /* Unlock RWLOCK. */
extern int pthread_rwlock_unlock (pthread_rwlock_t *__rwlock) extern int pthread_rwlock_unlock (pthread_rwlock_t *__rwlock)
__THROW __nonnull ((1)); __THROWNL __nonnull ((1));
/* Functions for handling read-write lock attributes. */ /* Functions for handling read-write lock attributes. */
@ -923,7 +921,7 @@ extern int pthread_rwlockattr_destroy (pthread_rwlockattr_t *__attr)
__THROW __nonnull ((1)); __THROW __nonnull ((1));
/* Return current setting of process-shared attribute of ATTR in PSHARED. */ /* Return current setting of process-shared attribute of ATTR in PSHARED. */
extern int pthread_rwlockattr_getpshared (__const pthread_rwlockattr_t * extern int pthread_rwlockattr_getpshared (const pthread_rwlockattr_t *
__restrict __attr, __restrict __attr,
int *__restrict __pshared) int *__restrict __pshared)
__THROW __nonnull ((1, 2)); __THROW __nonnull ((1, 2));
@ -934,7 +932,7 @@ extern int pthread_rwlockattr_setpshared (pthread_rwlockattr_t *__attr,
__THROW __nonnull ((1)); __THROW __nonnull ((1));
/* Return current setting of reader/writer preference. */ /* Return current setting of reader/writer preference. */
extern int pthread_rwlockattr_getkind_np (__const pthread_rwlockattr_t * extern int pthread_rwlockattr_getkind_np (const pthread_rwlockattr_t *
__restrict __attr, __restrict __attr,
int *__restrict __pref) int *__restrict __pref)
__THROW __nonnull ((1, 2)); __THROW __nonnull ((1, 2));
@ -950,8 +948,8 @@ extern int pthread_rwlockattr_setkind_np (pthread_rwlockattr_t *__attr,
/* Initialize condition variable COND using attributes ATTR, or use /* Initialize condition variable COND using attributes ATTR, or use
the default values if later is NULL. */ the default values if later is NULL. */
extern int pthread_cond_init (pthread_cond_t *__restrict __cond, extern int pthread_cond_init (pthread_cond_t *__restrict __cond,
__const pthread_condattr_t *__restrict const pthread_condattr_t *__restrict __cond_attr)
__cond_attr) __THROW __nonnull ((1)); __THROW __nonnull ((1));
/* Destroy condition variable COND. */ /* Destroy condition variable COND. */
extern int pthread_cond_destroy (pthread_cond_t *__cond) extern int pthread_cond_destroy (pthread_cond_t *__cond)
@ -959,11 +957,11 @@ extern int pthread_cond_destroy (pthread_cond_t *__cond)
/* Wake up one thread waiting for condition variable COND. */ /* Wake up one thread waiting for condition variable COND. */
extern int pthread_cond_signal (pthread_cond_t *__cond) extern int pthread_cond_signal (pthread_cond_t *__cond)
__THROW __nonnull ((1)); __THROWNL __nonnull ((1));
/* Wake up all threads waiting for condition variables COND. */ /* Wake up all threads waiting for condition variables COND. */
extern int pthread_cond_broadcast (pthread_cond_t *__cond) extern int pthread_cond_broadcast (pthread_cond_t *__cond)
__THROW __nonnull ((1)); __THROWNL __nonnull ((1));
/* Wait for condition variable COND to be signaled or broadcast. /* Wait for condition variable COND to be signaled or broadcast.
MUTEX is assumed to be locked before. MUTEX is assumed to be locked before.
@ -983,8 +981,8 @@ extern int pthread_cond_wait (pthread_cond_t *__restrict __cond,
__THROW. */ __THROW. */
extern int pthread_cond_timedwait (pthread_cond_t *__restrict __cond, extern int pthread_cond_timedwait (pthread_cond_t *__restrict __cond,
pthread_mutex_t *__restrict __mutex, pthread_mutex_t *__restrict __mutex,
__const struct timespec *__restrict const struct timespec *__restrict __abstime)
__abstime) __nonnull ((1, 2, 3)); __nonnull ((1, 2, 3));
/* Functions for handling condition variable attributes. */ /* Functions for handling condition variable attributes. */
@ -997,7 +995,7 @@ extern int pthread_condattr_destroy (pthread_condattr_t *__attr)
__THROW __nonnull ((1)); __THROW __nonnull ((1));
/* Get the process-shared flag of the condition variable attribute ATTR. */ /* Get the process-shared flag of the condition variable attribute ATTR. */
extern int pthread_condattr_getpshared (__const pthread_condattr_t * extern int pthread_condattr_getpshared (const pthread_condattr_t *
__restrict __attr, __restrict __attr,
int *__restrict __pshared) int *__restrict __pshared)
__THROW __nonnull ((1, 2)); __THROW __nonnull ((1, 2));
@ -1008,7 +1006,7 @@ extern int pthread_condattr_setpshared (pthread_condattr_t *__attr,
#ifdef __USE_XOPEN2K #ifdef __USE_XOPEN2K
/* Get the clock selected for the conditon variable attribute ATTR. */ /* Get the clock selected for the conditon variable attribute ATTR. */
extern int pthread_condattr_getclock (__const pthread_condattr_t * extern int pthread_condattr_getclock (const pthread_condattr_t *
__restrict __attr, __restrict __attr,
__clockid_t *__restrict __clock_id) __clockid_t *__restrict __clock_id)
__THROW __nonnull ((1, 2)); __THROW __nonnull ((1, 2));
@ -1034,15 +1032,15 @@ extern int pthread_spin_destroy (pthread_spinlock_t *__lock)
/* Wait until spinlock LOCK is retrieved. */ /* Wait until spinlock LOCK is retrieved. */
extern int pthread_spin_lock (pthread_spinlock_t *__lock) extern int pthread_spin_lock (pthread_spinlock_t *__lock)
__THROW __nonnull ((1)); __THROWNL __nonnull ((1));
/* Try to lock spinlock LOCK. */ /* Try to lock spinlock LOCK. */
extern int pthread_spin_trylock (pthread_spinlock_t *__lock) extern int pthread_spin_trylock (pthread_spinlock_t *__lock)
__THROW __nonnull ((1)); __THROWNL __nonnull ((1));
/* Release spinlock LOCK. */ /* Release spinlock LOCK. */
extern int pthread_spin_unlock (pthread_spinlock_t *__lock) extern int pthread_spin_unlock (pthread_spinlock_t *__lock)
__THROW __nonnull ((1)); __THROWNL __nonnull ((1));
/* Functions to handle barriers. */ /* Functions to handle barriers. */
@ -1050,7 +1048,7 @@ extern int pthread_spin_unlock (pthread_spinlock_t *__lock)
/* Initialize BARRIER with the attributes in ATTR. The barrier is /* Initialize BARRIER with the attributes in ATTR. The barrier is
opened when COUNT waiters arrived. */ opened when COUNT waiters arrived. */
extern int pthread_barrier_init (pthread_barrier_t *__restrict __barrier, extern int pthread_barrier_init (pthread_barrier_t *__restrict __barrier,
__const pthread_barrierattr_t *__restrict const pthread_barrierattr_t *__restrict
__attr, unsigned int __count) __attr, unsigned int __count)
__THROW __nonnull ((1)); __THROW __nonnull ((1));
@ -1060,7 +1058,7 @@ extern int pthread_barrier_destroy (pthread_barrier_t *__barrier)
/* Wait on barrier BARRIER. */ /* Wait on barrier BARRIER. */
extern int pthread_barrier_wait (pthread_barrier_t *__barrier) extern int pthread_barrier_wait (pthread_barrier_t *__barrier)
__THROW __nonnull ((1)); __THROWNL __nonnull ((1));
/* Initialize barrier attribute ATTR. */ /* Initialize barrier attribute ATTR. */
@ -1072,7 +1070,7 @@ extern int pthread_barrierattr_destroy (pthread_barrierattr_t *__attr)
__THROW __nonnull ((1)); __THROW __nonnull ((1));
/* Get the process-shared flag of the barrier attribute ATTR. */ /* Get the process-shared flag of the barrier attribute ATTR. */
extern int pthread_barrierattr_getpshared (__const pthread_barrierattr_t * extern int pthread_barrierattr_getpshared (const pthread_barrierattr_t *
__restrict __attr, __restrict __attr,
int *__restrict __pshared) int *__restrict __pshared)
__THROW __nonnull ((1, 2)); __THROW __nonnull ((1, 2));
@ -1104,7 +1102,7 @@ extern void *pthread_getspecific (pthread_key_t __key) __THROW;
/* Store POINTER in the thread-specific data slot identified by KEY. */ /* Store POINTER in the thread-specific data slot identified by KEY. */
extern int pthread_setspecific (pthread_key_t __key, extern int pthread_setspecific (pthread_key_t __key,
__const void *__pointer) __THROW ; const void *__pointer) __THROW ;
#ifdef __USE_XOPEN2K #ifdef __USE_XOPEN2K