From 8f49d9a94977e876de0c2750c63e1544a61de1db Mon Sep 17 00:00:00 2001 From: jasone Date: Wed, 23 Aug 2000 07:59:50 +0000 Subject: The second call to _thread_kern_sig_defer() in sem_post() should be a call to _thread_kern_sig_undefer(). --- lib/libc_r/uthread/uthread_sem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libc_r') 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; -- cgit v1.1