diff options
| author | Daniel Eischen <deischen@FreeBSD.org> | 2003-04-21 04:02:56 +0000 |
|---|---|---|
| committer | Daniel Eischen <deischen@FreeBSD.org> | 2003-04-21 04:02:56 +0000 |
| commit | 02245e612089c10a31b75ebd58bbef4765fcc054 (patch) | |
| tree | b1e30482cc9dacf340a49bac7c46ffce02f42daa /lib/libpthread/thread/thr_cond.c | |
| parent | b1ee04b18e90fec17c9c072a8d779b10e8bedcf1 (diff) | |
Notes
Diffstat (limited to 'lib/libpthread/thread/thr_cond.c')
| -rw-r--r-- | lib/libpthread/thread/thr_cond.c | 2 |
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 { |
