diff options
| author | Daniel Eischen <deischen@FreeBSD.org> | 2006-03-13 00:59:51 +0000 |
|---|---|---|
| committer | Daniel Eischen <deischen@FreeBSD.org> | 2006-03-13 00:59:51 +0000 |
| commit | e62165c8b0f7d6452c0033127a0fd8ad1d9e34d3 (patch) | |
| tree | 0ff38bc0c45640883ff06a668902f099c9ff8641 /lib/libpthread/thread/thr_sem.c | |
| parent | 855761d5db4349e3c5b6d89c8a3cd31e6988f523 (diff) | |
Notes
Diffstat (limited to 'lib/libpthread/thread/thr_sem.c')
| -rw-r--r-- | lib/libpthread/thread/thr_sem.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/libpthread/thread/thr_sem.c b/lib/libpthread/thread/thr_sem.c index 8312a870a870..1a01805e4f92 100644 --- a/lib/libpthread/thread/thr_sem.c +++ b/lib/libpthread/thread/thr_sem.c @@ -43,6 +43,14 @@ #include "libc_private.h" #include "thr_private.h" +LT10_COMPAT_PRIVATE(_sem_init); +LT10_COMPAT_DEFAULT(sem_init); +LT10_COMPAT_PRIVATE(_sem_wait); +LT10_COMPAT_DEFAULT(sem_wait); +LT10_COMPAT_PRIVATE(_sem_timedwait); +LT10_COMPAT_DEFAULT(sem_timedwait); +LT10_COMPAT_PRIVATE(_sem_post); +LT10_COMPAT_DEFAULT(sem_post); extern int pthread_cond_wait(pthread_cond_t *, pthread_mutex_t *); extern int pthread_cond_timedwait(pthread_cond_t *, pthread_mutex_t *, |
