diff options
author | jasone <jasone@FreeBSD.org> | 2000-08-23 07:59:50 +0000 |
---|---|---|
committer | jasone <jasone@FreeBSD.org> | 2000-08-23 07:59:50 +0000 |
commit | 8f49d9a94977e876de0c2750c63e1544a61de1db (patch) | |
tree | 304260ab8f2d47b2890981fd8b061194bb1bdf13 /lib/libc_r | |
parent | 678850dbf85bb21e07fe9dfe2f1646eccfe1ec15 (diff) | |
download | FreeBSD-src-8f49d9a94977e876de0c2750c63e1544a61de1db.zip FreeBSD-src-8f49d9a94977e876de0c2750c63e1544a61de1db.tar.gz |
The second call to _thread_kern_sig_defer() in sem_post() should be a call
to _thread_kern_sig_undefer().
Diffstat (limited to 'lib/libc_r')
-rw-r--r-- | lib/libc_r/uthread/uthread_sem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc_r/uthread/uthread_sem.c b/lib/libc_r/uthread/uthread_sem.c index 5a4757c..2dcf722 100644 --- a/lib/libc_r/uthread/uthread_sem.c +++ b/lib/libc_r/uthread/uthread_sem.c @@ -227,7 +227,7 @@ sem_post(sem_t *sem) pthread_mutex_unlock(&(*sem)->lock); - _thread_kern_sig_defer(); + _thread_kern_sig_undefer(); retval = 0; RETURN: return retval; |