Changeset 1d428a3c in rtems
- Timestamp:
- 08/13/96 19:06:12 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- c8a4ed6
- Parents:
- c9c94387
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/tests/psxtests/psx10/task.c
rc9c94387 r1d428a3c 27 27 int status; 28 28 29 /* wait for a condition variable signal from Init */ 30 29 31 Task_id = pthread_self(); 30 32 printf( "Task_1: ID is 0x%08x\n", Task_id ); … … 44 46 assert( !status ); 45 47 48 /* wait for a condition variable broadcast from Init */ 49 46 50 status = pthread_mutex_lock( &Mutex_id ); 47 51 assert( !status ); … … 55 59 assert( !status ); 56 60 61 puts( "Task_1: task exit" ); 57 62 pthread_exit( NULL ); 58 63 -
testsuites/psxtests/psx10/task.c
rc9c94387 r1d428a3c 27 27 int status; 28 28 29 /* wait for a condition variable signal from Init */ 30 29 31 Task_id = pthread_self(); 30 32 printf( "Task_1: ID is 0x%08x\n", Task_id ); … … 44 46 assert( !status ); 45 47 48 /* wait for a condition variable broadcast from Init */ 49 46 50 status = pthread_mutex_lock( &Mutex_id ); 47 51 assert( !status ); … … 55 59 assert( !status ); 56 60 61 puts( "Task_1: task exit" ); 57 62 pthread_exit( NULL ); 58 63
Note: See TracChangeset
for help on using the changeset viewer.