diff options
author | dfr <dfr@FreeBSD.org> | 2002-11-01 09:37:17 +0000 |
---|---|---|
committer | dfr <dfr@FreeBSD.org> | 2002-11-01 09:37:17 +0000 |
commit | e71d8ae47f4c733a1c47bb20bc1c82627daf1189 (patch) | |
tree | bde8613b059f593e0ef22131bf4e8f6c3a8063b7 /lib/libc/include/namespace.h | |
parent | e7f8941120daac766326c39b1dc5bfd35f73b14e (diff) | |
download | FreeBSD-src-e71d8ae47f4c733a1c47bb20bc1c82627daf1189.zip FreeBSD-src-e71d8ae47f4c733a1c47bb20bc1c82627daf1189.tar.gz |
* Add stubs for pthread_cond_broadcast.
* Fix typos in rwlock stubs.
* Add pthread_XXX counterparts to the _pthread_XXX stubs which libraries
like libX11 can use to ensure thread-safety without requiring the use
of a thread library.
Submitted by: Terry Lambert (pthread_cond_broadcast)
Reviewed by: deischen
Diffstat (limited to 'lib/libc/include/namespace.h')
-rw-r--r-- | lib/libc/include/namespace.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libc/include/namespace.h b/lib/libc/include/namespace.h index bbd33c0..bfe49e2 100644 --- a/lib/libc/include/namespace.h +++ b/lib/libc/include/namespace.h @@ -77,6 +77,7 @@ #define open _open #define poll _poll #define pthread_cond_signal _pthread_cond_signal +#define pthread_cond_broadcast _pthread_cond_broadcast #define pthread_cond_wait _pthread_cond_wait #define pthread_cond_init _pthread_cond_init #define pthread_exit _pthread_exit |