]> git.saurik.com Git - apple/libc.git/commitdiff
Libc-167.tar.gz mac-os-x-1001 mac-os-x-1004 v167
authorApple <opensource@apple.com>
Wed, 11 Apr 2001 00:24:42 +0000 (00:24 +0000)
committerApple <opensource@apple.com>
Wed, 11 Apr 2001 00:24:42 +0000 (00:24 +0000)
pthreads.subproj/pthread_cond.c

index 49e4c360136050b662819c2404f176721ea6e5d5..ae6ef055df870d0d938005e4b781b8892c15f903 100644 (file)
@@ -78,7 +78,7 @@ int
 pthread_cond_broadcast(pthread_cond_t *cond)
 {
     kern_return_t kern_res;
-    int res, delta;
+    int res;
     if (cond->sig == _PTHREAD_COND_SIG_init) {
         if ((res = pthread_cond_init(cond, NULL)) != 0) {
             return (res);
@@ -89,17 +89,16 @@ pthread_cond_broadcast(pthread_cond_t *cond)
         return (EINVAL);
     }
     LOCK(cond->lock);
-    delta = cond->waiters - cond->sigspending;
-    if (delta <= 0) {
-        /* Avoid kernel call since there are not enough waiters... */
+    if (cond->sem == MACH_PORT_NULL) {
+        /* Avoid kernel call since there are no waiters... */
         UNLOCK(cond->lock);
         return (ESUCCESS);
     }
-    cond->sigspending += delta;
+    cond->sigspending++;
     UNLOCK(cond->lock);
     PTHREAD_MACH_CALL(semaphore_signal_all(cond->sem), kern_res);
     LOCK(cond->lock);
-    cond->sigspending -= delta;
+    cond->sigspending--;
     if (cond->waiters == 0 && cond->sigspending == 0) {
         restore_sem_to_pool(cond->sem);
         cond->sem = MACH_PORT_NULL;
@@ -128,7 +127,7 @@ pthread_cond_signal_thread_np(pthread_cond_t *cond, pthread_t thread)
         return (EINVAL); /* Not a condition variable */
     }
     LOCK(cond->lock);
-    if (cond->waiters <= cond->sigspending) {
+    if (cond->sem == MACH_PORT_NULL) {
         /* Avoid kernel call since there are not enough waiters... */
         UNLOCK(cond->lock);
         return (ESUCCESS);