diff options
| author | Daniel Eischen <deischen@FreeBSD.org> | 2002-10-31 18:17:58 +0000 |
|---|---|---|
| committer | Daniel Eischen <deischen@FreeBSD.org> | 2002-10-31 18:17:58 +0000 |
| commit | 0ece26b0ba4642dfcc12d2cb9965e30f8e38be6f (patch) | |
| tree | 01ed13c3104312004089868f44241bf38fc655c0 | |
| parent | 91da7c40b2ae6c86cc7d103f9925991d0e3d7f5c (diff) | |
Notes
| -rw-r--r-- | lib/libc_r/uthread/uthread_mutex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc_r/uthread/uthread_mutex.c b/lib/libc_r/uthread/uthread_mutex.c index 86e0b8bf324ca..7951815d3d7ba 100644 --- a/lib/libc_r/uthread/uthread_mutex.c +++ b/lib/libc_r/uthread/uthread_mutex.c @@ -266,7 +266,7 @@ init_static(pthread_mutex_t *mutex) _SPINLOCK(&static_init_lock); if (*mutex == NULL) - ret = pthread_mutex_init(mutex, NULL); + ret = _pthread_mutex_init(mutex, NULL); else ret = 0; @@ -283,7 +283,7 @@ init_static_private(pthread_mutex_t *mutex) _SPINLOCK(&static_init_lock); if (*mutex == NULL) - ret = pthread_mutex_init(mutex, &static_mattr); + ret = _pthread_mutex_init(mutex, &static_mattr); else ret = 0; |
