diff options
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | tests/ChangeLog | 1 | ||||
| -rw-r--r-- | tests/GNUmakefile | 3 | ||||
| -rw-r--r-- | tests/Makefile | 3 | ||||
| -rw-r--r-- | tests/cancel8.c | 217 | ||||
| -rw-r--r-- | w32_CancelableWait.c | 6 | 
6 files changed, 230 insertions, 5 deletions
| @@ -1,3 +1,8 @@ +2003-09-03  Ross Johnson  <rpj@callisto.canberra.edu.au>
 +
 +	* w32_cancelableWait.c (ptw32_cancelable_wait): Allow cancelation
 +	of implicit POSIX threads as well.
 +
  2003-09-02  Ross Johnson  <rpj@callisto.canberra.edu.au>
  	* pthread_win32_attach_detach_np.c (pthread_win32_thread_detach_np):
 diff --git a/tests/ChangeLog b/tests/ChangeLog index 4873c31..2107c84 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -3,6 +3,7 @@  	* exit4.c: New test.  	* exit5.c: New test.  	* cancel7.c: New test. +	* cancel8.c: New test.  2003-08-13  Ross Johnson  <rpj@ise.canberra.edu.au>
 diff --git a/tests/GNUmakefile b/tests/GNUmakefile index 769beaa..a308227 100644 --- a/tests/GNUmakefile +++ b/tests/GNUmakefile @@ -79,7 +79,7 @@ TESTS	= loadfree \  	  rwlock1 rwlock2 rwlock3 rwlock4 rwlock5 rwlock6 rwlock7 \  	  rwlock2_t rwlock3_t rwlock4_t rwlock5_t rwlock6_t rwlock6_t2 \  	  context1 cancel3 cancel4 cancel5 cancel6a cancel6d \ -	  cancel7 \ +	  cancel7 cancel8 \  	  cleanup0 cleanup1 cleanup2 cleanup3 \  	  priority1 priority2 inherit1 \  	  spin1 spin2 spin3 spin4 \ @@ -146,6 +146,7 @@ cancel5.pass: cancel3.pass  cancel6a.pass: cancel3.pass  cancel6d.pass: cancel3.pass  cancel7.pass: kill1.pass +cancel8.pass: cancel7.pass  cleanup0.pass: cancel5.pass  cleanup1.pass: cleanup0.pass  cleanup2.pass: cleanup1.pass diff --git a/tests/Makefile b/tests/Makefile index b743872..94c593f 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -93,7 +93,7 @@ PASSES= loadfree.pass \  	  rwlock2_t.pass  rwlock3_t.pass  rwlock4_t.pass  rwlock5_t.pass  rwlock6_t.pass  rwlock6_t2.pass  \
  	  context1.pass  \
  	  cancel3.pass  cancel4.pass  cancel5.pass  cancel6a.pass  cancel6d.pass  \
 -	  cancel7  \ +	  cancel7  cancel8  \  	  cleanup0.pass  cleanup1.pass  cleanup2.pass  cleanup3.pass  \
  	  priority1.pass priority2.pass inherit1.pass  \
  	  spin1.pass  spin2.pass  spin3.pass  spin4.pass  \
 @@ -213,6 +213,7 @@ cancel5.pass: cancel3.pass  cancel6a.pass: cancel3.pass
  cancel6d.pass: cancel3.pass
  cancel7.pass: kill1.pass
 +cancel8.pass: cancel7.pass
  cleanup0.pass: cancel5.pass
  cleanup1.pass: cleanup0.pass
  cleanup2.pass: cleanup1.pass
 diff --git a/tests/cancel8.c b/tests/cancel8.c new file mode 100644 index 0000000..632a7e3 --- /dev/null +++ b/tests/cancel8.c @@ -0,0 +1,217 @@ +/* + * File: cancel8.c + * + * + * -------------------------------------------------------------------------- + * + *      Pthreads-win32 - POSIX Threads Library for Win32 + *      Copyright(C) 1998 John E. Bossom + *      Copyright(C) 1999,2003 Pthreads-win32 contributors + *  + *      Contact Email: rpj@callisto.canberra.edu.au + *  + *      The current list of contributors is contained + *      in the file CONTRIBUTORS included with the source + *      code distribution. The list can also be seen at the + *      following World Wide Web location: + *      http://sources.redhat.com/pthreads-win32/contributors.html + *  + *      This library is free software; you can redistribute it and/or + *      modify it under the terms of the GNU Lesser General Public + *      License as published by the Free Software Foundation; either + *      version 2 of the License, or (at your option) any later version. + *  + *      This library is distributed in the hope that it will be useful, + *      but WITHOUT ANY WARRANTY; without even the implied warranty of + *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU + *      Lesser General Public License for more details. + *  + *      You should have received a copy of the GNU Lesser General Public + *      License along with this library in the file COPYING.LIB; + *      if not, write to the Free Software Foundation, Inc., + *      59 Temple Place - Suite 330, Boston, MA 02111-1307, USA + * + * -------------------------------------------------------------------------- + * + * Test Synopsis: Test cancelling a blocked Win32 thread having created an + * implicit POSIX handle for it. + * + * Test Method (Validation or Falsification): + * - Validate return value and that POSIX handle is created and destroyed. + * + * Requirements Tested: + * - + * + * Features Tested: + * -  + * + * Cases Tested: + * -  + * + * Description: + * -  + * + * Environment: + * -  + * + * Input: + * - None. + * + * Output: + * - File name, Line number, and failed expression on failure. + * - No output on success. + * + * Assumptions: + * - have working pthread_create, pthread_self, pthread_mutex_lock/unlock + *   pthread_testcancel, pthread_cancel, pthread_join + * + * Pass Criteria: + * - Process returns zero exit status. + * + * Fail Criteria: + * - Process returns non-zero exit status. + */ + +#include "test.h" +#ifndef _UWIN +#include <process.h> +#endif + +/* + * Create NUMTHREADS threads in addition to the Main thread. + */ +enum { +  NUMTHREADS = 4 +}; + +typedef struct bag_t_ bag_t; +struct bag_t_ { +  int threadnum; +  int started; +  /* Add more per-thread state variables here */ +  int count; +  pthread_t self; +}; + +static bag_t threadbag[NUMTHREADS + 1]; + +pthread_cond_t CV = PTHREAD_COND_INITIALIZER; +pthread_mutex_t CVLock = PTHREAD_MUTEX_INITIALIZER; + +#if ! defined (__MINGW32__) || defined (__MSVCRT__) +unsigned __stdcall +#else +void +#endif +Win32thread(void * arg) +{ +  int i; +  bag_t * bag = (bag_t *) arg; + +  assert(bag == &threadbag[bag->threadnum]); +  assert(bag->started == 0); +  bag->started = 1; + +  assert((bag->self = pthread_self()) != NULL); +  assert(pthread_kill(bag->self, 0) == 0); + +  assert(pthread_mutex_lock(&CVLock) == 0); +  pthread_cleanup_push(pthread_mutex_unlock, &CVLock); +  pthread_cond_wait(&CV, &CVLock); +  pthread_cleanup_pop(1); + +  return 0; +} + +int +main() +{ +  int failed = 0; +  int i; +  HANDLE h[NUMTHREADS + 1]; + +  for (i = 1; i <= NUMTHREADS; i++) +    { +      threadbag[i].started = 0; +      threadbag[i].threadnum = i; +#if ! defined (__MINGW32__) || defined (__MSVCRT__) +      h[i] = (HANDLE) _beginthreadex(NULL, 0, Win32thread, (void *) &threadbag[i], 0, NULL); +#else +      h[i] = (HANDLE) _beginthread(Win32thread, 0, (void *) &threadbag[i]); +#endif +    } + +  /* +   * Code to control or munipulate child threads should probably go here. +   */ +  Sleep(500); + +  /* +   * Cancel all threads. +   */ +  for (i = 1; i <= NUMTHREADS; i++) +    { +      assert(pthread_kill(threadbag[i].self, 0) == 0); +      assert(pthread_cancel(threadbag[i].self) == 0); +    } + +  /* +   * Give threads time to run. +   */ +  Sleep(NUMTHREADS * 100); + +  /* +   * Standard check that all threads started. +   */ +  for (i = 1; i <= NUMTHREADS; i++) +    {  +      if (!threadbag[i].started) +	{ +	  failed |= !threadbag[i].started; +	  fprintf(stderr, "Thread %d: started %d\n", i, threadbag[i].started); +	} +    } + +  assert(!failed); + +  /* +   * Check any results here. Set "failed" and only print output on failure. +   */ +  failed = 0; +  for (i = 1; i <= NUMTHREADS; i++) +    { +      int fail = 0; +      int result = 0; + +#if ! defined (__MINGW32__) || defined (__MSVCRT__) +      assert(GetExitCodeThread(h[i], (LPDWORD) &result) == TRUE); +#else +      /* +       * Can't get a result code. +       */ +      result = (int) PTHREAD_CANCELED; +#endif + +      assert(threadbag[i].self != NULL); +      assert(pthread_kill(threadbag[i].self, 0) == ESRCH); + +      fail = (result != (int) PTHREAD_CANCELED); + +      if (fail) +	{ +	  fprintf(stderr, "Thread %d: started %d: count %d\n", +		  i, +		  threadbag[i].started, +		  threadbag[i].count); +	} +      failed = (failed || fail); +    } + +  assert(!failed); + +  /* +   * Success. +   */ +  return 0; +} + diff --git a/w32_CancelableWait.c b/w32_CancelableWait.c index 42f28f5..6352ff9 100644 --- a/w32_CancelableWait.c +++ b/w32_CancelableWait.c @@ -104,15 +104,15 @@ ptw32_cancelable_wait (HANDLE waitHandle, DWORD timeout)  			case 1:  				/*  				 * Got cancel request. -				 * In the event that both handles are signalled, the cancel will +				 * In the event that both handles are signaled, the cancel will  				 * be ignored (see case 0 comment).  				 */  				ResetEvent (handles[1]); -				if (self != NULL && !self->implicit) +				if (self != NULL)  					{  						/* -						 * Thread started with pthread_create. +						 * Should handle POSIX and implicit POSIX threads..  						 * Make sure we haven't been async-canceled in the meantime.  						 */  						(void) pthread_mutex_lock(&self->cancelLock); | 
