tests ported from pthreads-win32 project. * winsup.api/pthread/test.h: Commmon declaraions for pthread tests. * winsup.api/pthread/cleanup2.c: New test. * winsup.api/pthread/cleanup3.c: Ditto. * winsup.api/pthread/condvar1.c: Ditto. * winsup.api/pthread/condvar2.c: Ditto. * winsup.api/pthread/condvar2_1.c: Ditto. * winsup.api/pthread/condvar3.c: Ditto. * winsup.api/pthread/condvar3_1.c: Ditto. * winsup.api/pthread/condvar3_2.c: Ditto. * winsup.api/pthread/condvar3_3.c: Ditto. * winsup.api/pthread/condvar4.c: Ditto. * winsup.api/pthread/condvar5.c: Ditto. * winsup.api/pthread/condvar6.c: Ditto. * winsup.api/pthread/condvar8.c: Ditto. * winsup.api/pthread/count1.c: Ditto. * winsup.api/pthread/create1.c: Ditto. * winsup.api/pthread/create2.c: Ditto. * winsup.api/pthread/equal1.c: Ditto. * winsup.api/pthread/exit1.c: Ditto. * winsup.api/pthread/exit2.c: Ditto. * winsup.api/pthread/exit3.c: Ditto. * winsup.api/pthread/inherit1.c: Ditto. * winsup.api/pthread/join0.c: Ditto. * winsup.api/pthread/join1.c: Ditto. * winsup.api/pthread/join2.c: Ditto. * winsup.api/pthread/mutex1.c: Ditto. * winsup.api/pthread/mutex1r.c: Ditto. * winsup.api/pthread/mutex2.c: Ditto. * winsup.api/pthread/mutex3.c: Ditto. * winsup.api/pthread/mutex6r.c: Ditto. * winsup.api/pthread/once1.c: Ditto. * winsup.api/pthread/priority1.c: Ditto. * winsup.api/pthread/priority2.c: Ditto. * winsup.api/pthread/self1.c: Ditto. * winsup.api/pthread/self2.c: Ditto. * winsup.api/pthread/tsd1.c: Ditto.
		
			
				
	
	
		
			75 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			75 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * File: create2.c
 | |
|  *
 | |
|  * Test Synopsis:
 | |
|  * - Test that threads have a Win32 handle when started.
 | |
|  *
 | |
|  * Test Method (Validation or Falsification):
 | |
|  * - Statistical, not absolute (depends on sample size).
 | |
|  *
 | |
|  * 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:
 | |
|  * -
 | |
|  *
 | |
|  * Pass Criteria:
 | |
|  * - Process returns zero exit status.
 | |
|  *
 | |
|  * Fail Criteria:
 | |
|  * - Process returns non-zero exit status.
 | |
|  */
 | |
| 
 | |
| #include "test.h"
 | |
| 
 | |
| const int NUMTHREADS = 10000;
 | |
| 
 | |
| static int washere = 0;
 | |
| 
 | |
| void * func(void * arg)
 | |
| {
 | |
|   washere = 1;
 | |
|   return (void *) 0; 
 | |
| }
 | |
|  
 | |
| int
 | |
| main()
 | |
| {
 | |
|   pthread_t t;
 | |
|   pthread_attr_t attr;
 | |
|   void * result = NULL;
 | |
|   int i;
 | |
| 
 | |
|   pthread_attr_init(&attr);
 | |
|   pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);
 | |
| 
 | |
|   for (i = 0; i < NUMTHREADS; i++)
 | |
|     {
 | |
|       washere = 0;
 | |
|       assert(pthread_create(&t, &attr, func, NULL) == 0);
 | |
|       pthread_join(t, &result);
 | |
|       assert(washere == 1);
 | |
|     }
 | |
| 
 | |
|   return 0;
 | |
| }
 |