diff options
author | mtm <mtm@FreeBSD.org> | 2003-05-31 14:38:22 +0000 |
---|---|---|
committer | mtm <mtm@FreeBSD.org> | 2003-05-31 14:38:22 +0000 |
commit | e454f0b24397cfb0e2e61b8e804b101c4095708b (patch) | |
tree | 2ce2b27d372050112f9145ef69d1d4516c19b15e /lib/libthr | |
parent | d535a2bede497c2a96ac85a112dec900ea2d4691 (diff) | |
download | FreeBSD-src-e454f0b24397cfb0e2e61b8e804b101c4095708b.zip FreeBSD-src-e454f0b24397cfb0e2e61b8e804b101c4095708b.tar.gz |
I botched one of my committs in the last round. Fix it.
Diffstat (limited to 'lib/libthr')
-rw-r--r-- | lib/libthr/thread/thr_cond.c | 5 | ||||
-rw-r--r-- | lib/libthr/thread/thr_mutex.c | 18 |
2 files changed, 11 insertions, 12 deletions
diff --git a/lib/libthr/thread/thr_cond.c b/lib/libthr/thread/thr_cond.c index 95e5589..6a86b39 100644 --- a/lib/libthr/thread/thr_cond.c +++ b/lib/libthr/thread/thr_cond.c @@ -529,10 +529,11 @@ cond_queue_enq(pthread_cond_t cond, pthread_t pthread) static inline int cond_init(pthread_cond_t *cond) { + int error = 0; _SPINLOCK(&static_cond_lock); if (*cond == PTHREAD_COND_INITIALIZER) - return (_pthread_cond_init(cond, NULL)); + error = _pthread_cond_init(cond, NULL); _SPINUNLOCK(&static_cond_lock); - return (0); + return (error); } diff --git a/lib/libthr/thread/thr_mutex.c b/lib/libthr/thread/thr_mutex.c index 5267a32..50ece61 100644 --- a/lib/libthr/thread/thr_mutex.c +++ b/lib/libthr/thread/thr_mutex.c @@ -269,25 +269,23 @@ _pthread_mutex_destroy(pthread_mutex_t * mutex) static int init_static(pthread_mutex_t *mutex) { + int error = 0; _SPINLOCK(&static_init_lock); - if (*mutex == PTHREAD_MUTEX_INITIALIZER) { - _SPINUNLOCK(&static_init_lock); - return(_pthread_mutex_init(mutex, NULL)); - } + if (*mutex == PTHREAD_MUTEX_INITIALIZER) + error = _pthread_mutex_init(mutex, NULL); _SPINUNLOCK(&static_init_lock); - return (0); + return (error); } static int init_static_private(pthread_mutex_t *mutex) { + int error = 0; _SPINLOCK(&static_init_lock); - if (*mutex == PTHREAD_MUTEX_INITIALIZER) { - _SPINUNLOCK(&static_init_lock); - return (_pthread_mutex_init(mutex, &static_mattr)); - } + if (*mutex == PTHREAD_MUTEX_INITIALIZER) + error = _pthread_mutex_init(mutex, &static_mattr); _SPINUNLOCK(&static_init_lock); - return (0); + return (error); } int |