dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnet/support thread.c,1.5,1.6


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnet/support thread.c,1.5,1.6
Date: Sat, 21 Jun 2003 01:41:25 -0400

Update of /cvsroot/dotgnu-pnet/pnet/support
In directory subversions:/tmp/cvs-serv2311/support

Modified Files:
        thread.c 
Log Message:


Fixed bug where ILThreadJoin incorrectly evaluates state of the thread to join.


Index: thread.c
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnet/support/thread.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** thread.c    6 Jun 2002 23:54:39 -0000       1.5
--- thread.c    21 Jun 2003 05:41:23 -0000      1.6
***************
*** 529,533 ****
  
        /* Determine what to do based on the thread's state */
!       if((thread->state & IL_TS_STOPPED) == 0)
        {
                /* The thread is already stopped, so return immediately */
--- 529,533 ----
  
        /* Determine what to do based on the thread's state */
!       if((thread->state & IL_TS_STOPPED) != 0)
        {
                /* The thread is already stopped, so return immediately */





reply via email to

[Prev in Thread] Current Thread [Next in Thread]