diff options
| author | Alfred Perlstein <alfred@FreeBSD.org> | 2002-09-19 01:09:49 +0000 |
|---|---|---|
| committer | Alfred Perlstein <alfred@FreeBSD.org> | 2002-09-19 01:09:49 +0000 |
| commit | 4f68734dc61219c5876993c6159ecbcb037a2df3 (patch) | |
| tree | a799203e0b387f66b4e4236cc28f1032444b825e /lib/libc | |
| parent | 3ffb9fadc8295f73c9a876e2ecaea17e89aa1384 (diff) | |
Notes
Diffstat (limited to 'lib/libc')
| -rw-r--r-- | lib/libc/gen/_pthread_stubs.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/libc/gen/_pthread_stubs.c b/lib/libc/gen/_pthread_stubs.c index 5935d5819397..18669b6a7160 100644 --- a/lib/libc/gen/_pthread_stubs.c +++ b/lib/libc/gen/_pthread_stubs.c @@ -43,6 +43,7 @@ __FBSDID("$FreeBSD$"); __weak_reference(_pthread_cond_init_stub, _pthread_cond_init); __weak_reference(_pthread_cond_signal_stub, _pthread_cond_signal); __weak_reference(_pthread_cond_wait_stub, _pthread_cond_wait); +__weak_reference(_pthread_cond_destroy_stub, _pthread_cond_destroy); __weak_reference(_pthread_getspecific_stub, _pthread_getspecific); __weak_reference(_pthread_key_create_stub, _pthread_key_create); __weak_reference(_pthread_key_delete_stub, _pthread_key_delete); @@ -91,6 +92,12 @@ _pthread_cond_wait_stub(pthread_cond_t *cond, pthread_mutex_t *mutex) return (0); } +int +_pthread_cond_destroy_stub(pthread_cond_t *cond) +{ + return (0); +} + void * _pthread_getspecific_stub(pthread_key_t key) { |
