diff options
author | wollman <wollman@FreeBSD.org> | 2003-01-23 01:09:43 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 2003-01-23 01:09:43 +0000 |
commit | cb818c51156d8132ad09194b61e3983c1b5caaf6 (patch) | |
tree | c2db3c006a5e6ce6e0465acd0914c6ee33b1989f /include | |
parent | c2d8833e2d9cb5df52287108a7e2057590521d91 (diff) | |
download | FreeBSD-src-cb818c51156d8132ad09194b61e3983c1b5caaf6.zip FreeBSD-src-cb818c51156d8132ad09194b61e3983c1b5caaf6.tar.gz |
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.)
Diffstat (limited to 'include')
-rw-r--r-- | include/pthread.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/include/pthread.h b/include/pthread.h index c48654a..83f36e4 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 *, |