diff options
| author | Daniel Eischen <deischen@FreeBSD.org> | 2001-04-10 04:19:21 +0000 |
|---|---|---|
| committer | Daniel Eischen <deischen@FreeBSD.org> | 2001-04-10 04:19:21 +0000 |
| commit | 437df4859af22264a2c620a3720c776bf0c4a58d (patch) | |
| tree | 953269f13c394f2d6c6b0aa9a73344d82f509fc2 /lib/libpthread/thread/thr_cond.c | |
| parent | 54fd7f685f42878f99a2e2d8428d084f9b1125ab (diff) | |
Notes
Diffstat (limited to 'lib/libpthread/thread/thr_cond.c')
| -rw-r--r-- | lib/libpthread/thread/thr_cond.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/libpthread/thread/thr_cond.c b/lib/libpthread/thread/thr_cond.c index 6f2c509d20ac..ea8215d3c565 100644 --- a/lib/libpthread/thread/thr_cond.c +++ b/lib/libpthread/thread/thr_cond.c @@ -44,12 +44,12 @@ static inline pthread_t cond_queue_deq(pthread_cond_t); static inline void cond_queue_remove(pthread_cond_t, pthread_t); static inline void cond_queue_enq(pthread_cond_t, pthread_t); -#pragma weak pthread_cond_init=_pthread_cond_init -#pragma weak pthread_cond_destroy=_pthread_cond_destroy -#pragma weak pthread_cond_wait=_pthread_cond_wait -#pragma weak pthread_cond_timedwait=_pthread_cond_timedwait -#pragma weak pthread_cond_signal=_pthread_cond_signal -#pragma weak pthread_cond_broadcast=_pthread_cond_broadcast +__weak_reference(_pthread_cond_init, pthread_cond_init); +__weak_reference(_pthread_cond_destroy, pthread_cond_destroy); +__weak_reference(_pthread_cond_wait, pthread_cond_wait); +__weak_reference(_pthread_cond_timedwait, pthread_cond_timedwait); +__weak_reference(_pthread_cond_signal, pthread_cond_signal); +__weak_reference(_pthread_cond_broadcast, pthread_cond_broadcast); /* Reinitialize a condition variable to defaults. */ |
