Changeset 5263668 in rtems
- Timestamp:
- 08/12/96 14:49:02 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 0cd15947
- Parents:
- da4e38d
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/tests/psxtests/psx10/init.c
rda4e38d r5263668 24 24 pthread_condattr_t attr; 25 25 int pshared; 26 pthread_cond_t cond = PTHREAD_COND_INITIALIZER; 26 27 27 28 puts( "\n\n*** POSIX TEST 10 ***" ); … … 80 81 printf( "Init: ID is 0x%08x\n", Init_id ); 81 82 83 puts( "Init: pthread_cond_init - NULL attr" ); 84 status = pthread_cond_init( &cond, NULL ); 85 assert( !status ); 86 87 puts( "Init: pthread_cond_destroy" ); 88 status = pthread_cond_destroy( &cond ); 89 assert( !status ); 90 82 91 /* create a thread */ 83 92 -
testsuites/psxtests/psx10/init.c
rda4e38d r5263668 24 24 pthread_condattr_t attr; 25 25 int pshared; 26 pthread_cond_t cond = PTHREAD_COND_INITIALIZER; 26 27 27 28 puts( "\n\n*** POSIX TEST 10 ***" ); … … 80 81 printf( "Init: ID is 0x%08x\n", Init_id ); 81 82 83 puts( "Init: pthread_cond_init - NULL attr" ); 84 status = pthread_cond_init( &cond, NULL ); 85 assert( !status ); 86 87 puts( "Init: pthread_cond_destroy" ); 88 status = pthread_cond_destroy( &cond ); 89 assert( !status ); 90 82 91 /* create a thread */ 83 92
Note: See TracChangeset
for help on using the changeset viewer.