diff options
| author | Mike Makonnen <mtm@FreeBSD.org> | 2003-05-31 14:38:22 +0000 |
|---|---|---|
| committer | Mike Makonnen <mtm@FreeBSD.org> | 2003-05-31 14:38:22 +0000 |
| commit | 6e1aa51e9e0951277be41e890df0725099ae38ae (patch) | |
| tree | 2ce2b27d372050112f9145ef69d1d4516c19b15e /lib/libthr/thread/thr_cond.c | |
| parent | e07f1d5fd72491f8b5f6aaffba8a9d4ebfe7b7ad (diff) | |
Notes
Diffstat (limited to 'lib/libthr/thread/thr_cond.c')
| -rw-r--r-- | lib/libthr/thread/thr_cond.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libthr/thread/thr_cond.c b/lib/libthr/thread/thr_cond.c index 95e5589bcff1..6a86b390df52 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); } |
