condvar.c

Peter Slacik Peter.Slacik@tatramed.sk
Wed May 26 09:20:00 GMT 1999


Hi thread writers,

I tried to upgrade (after half year) to the current pthreads snapshot,
snap-1999-04-07, and I suspect one inequality test to be wrong:

cvs diff -c -r1.1 -r1.2 condvar.c
Index: condvar.c
===================================================================
RCS file: pthread/condvar.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -c -r1.1 -r1.2
*** condvar.c   1999/04/07 12:18:40     1.1
--- condvar.c   1999/05/26 16:10:08     1.2
***************
*** 851,857 ****
         * Wait for all the awakened threads to acquire their part of
         * the counting semaphore
         */
!       if (WaitForSingleObject (cv->waitersDone, INFINITE) !=
            WAIT_OBJECT_0)
          {
            result = 0;
--- 851,857 ----
         * Wait for all the awakened threads to acquire their part of
         * the counting semaphore
         */
!       if (WaitForSingleObject (cv->waitersDone, INFINITE) ==
            WAIT_OBJECT_0)
          {
            result = 0;

Please check this.

Regards
Peter Slacik





More information about the Pthreads-win32 mailing list