summaryrefslogtreecommitdiff
path: root/lib/libpthread/thread/thr_cond.c
diff options
context:
space:
mode:
authorDaniel Eischen <deischen@FreeBSD.org>2003-04-21 04:02:56 +0000
committerDaniel Eischen <deischen@FreeBSD.org>2003-04-21 04:02:56 +0000
commit02245e612089c10a31b75ebd58bbef4765fcc054 (patch)
treeb1e30482cc9dacf340a49bac7c46ffce02f42daa /lib/libpthread/thread/thr_cond.c
parentb1ee04b18e90fec17c9c072a8d779b10e8bedcf1 (diff)
Notes
Diffstat (limited to 'lib/libpthread/thread/thr_cond.c')
-rw-r--r--lib/libpthread/thread/thr_cond.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libpthread/thread/thr_cond.c b/lib/libpthread/thread/thr_cond.c
index 1221fd85fcc8..c6bffeb74228 100644
--- a/lib/libpthread/thread/thr_cond.c
+++ b/lib/libpthread/thread/thr_cond.c
@@ -102,7 +102,7 @@ _pthread_cond_init(pthread_cond_t *cond, const pthread_condattr_t *cond_attr)
malloc(sizeof(struct pthread_cond))) == NULL) {
rval = ENOMEM;
} else if (_lock_init(&pcond->c_lock, LCK_ADAPTIVE,
- _kse_lock_wait, _kse_lock_wakeup) != 0) {
+ _thr_lock_wait, _thr_lock_wakeup) != 0) {
free(pcond);
rval = ENOMEM;
} else {