From cd7b801ba0d38bb380483c6367e2051e7dc91e50 Mon Sep 17 00:00:00 2001 From: Garrett Wollman Date: Thu, 23 Jan 2003 01:09:43 +0000 Subject: [PATCH] In the absence of consensus as to implement stubs for these TSH-shaded routines, remove their declarations. Even though rwlocks have the same functions, XBDft does not shade those declarations so I am leaving them in. (This is probably a bug in the Standard.) --- include/pthread.h | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/include/pthread.h b/include/pthread.h index c48654ac6f4..83f36e44040 100644 --- a/include/pthread.h +++ b/include/pthread.h @@ -204,11 +204,6 @@ void pthread_cleanup_push(void (*) (void *), void *routine_arg); int pthread_condattr_destroy(pthread_condattr_t *); int pthread_condattr_init(pthread_condattr_t *); -#if defined(_POSIX_THREAD_PROCESS_SHARED) -int pthread_condattr_getpshared(pthread_condattr_t *, int *); -int pthread_condattr_setpshared(pthread_condattr_t *, int); -#endif - int pthread_cond_broadcast(pthread_cond_t *); int pthread_cond_destroy(pthread_cond_t *); int pthread_cond_init(pthread_cond_t *, @@ -265,13 +260,6 @@ int pthread_getprio(pthread_t); int pthread_setprio(pthread_t, int); void pthread_yield(void); -#if defined(_POSIX_THREAD_PROCESS_SHARED) -int pthread_mutexattr_getpshared(pthread_mutexattr_t *, - int *pshared); -int pthread_mutexattr_setpshared(pthread_mutexattr_t *, - int pshared); -#endif - int pthread_mutexattr_getprioceiling(pthread_mutexattr_t *, int *); int pthread_mutexattr_setprioceiling(pthread_mutexattr_t *,