Changeset 0cd15947 in rtems
- Timestamp:
- 08/12/96 15:15:51 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 684c3c4
- Parents:
- 5263668
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/tests/psxtests/psx10/init.c
r5263668 r0cd15947 48 48 assert( status == EINVAL ); 49 49 50 puts( "Init: pthread_condattr_init" ); 51 status = pthread_condattr_init( &attr ); 52 assert( !status ); 53 50 54 puts( "Init: pthread_condattr_setpshared - PTHREAD_PROCESS_SHARED" ); 51 55 status = pthread_condattr_setpshared( &attr, PTHREAD_PROCESS_SHARED ); … … 89 93 assert( !status ); 90 94 95 puts( "Init: pthread_cond_init - attr" ); 96 status = pthread_cond_init( &cond, &attr ); 97 assert( !status ); 98 91 99 /* create a thread */ 92 100 -
testsuites/psxtests/psx10/init.c
r5263668 r0cd15947 48 48 assert( status == EINVAL ); 49 49 50 puts( "Init: pthread_condattr_init" ); 51 status = pthread_condattr_init( &attr ); 52 assert( !status ); 53 50 54 puts( "Init: pthread_condattr_setpshared - PTHREAD_PROCESS_SHARED" ); 51 55 status = pthread_condattr_setpshared( &attr, PTHREAD_PROCESS_SHARED ); … … 89 93 assert( !status ); 90 94 95 puts( "Init: pthread_cond_init - attr" ); 96 status = pthread_cond_init( &cond, &attr ); 97 assert( !status ); 98 91 99 /* create a thread */ 92 100
Note: See TracChangeset
for help on using the changeset viewer.