Changeset 1d428a3c in rtems


Ignore:
Timestamp:
08/13/96 19:06:12 (27 years ago)
Author:
Mark Johannes <Mark.Johannes@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
c8a4ed6
Parents:
c9c94387
Message:

task_1: added comments and print statement for task exit

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • c/src/tests/psxtests/psx10/task.c

    rc9c94387 r1d428a3c  
    2727  int  status;
    2828
     29/* wait for a condition variable signal from Init */
     30
    2931  Task_id = pthread_self();
    3032  printf( "Task_1: ID is 0x%08x\n", Task_id );
     
    4446  assert( !status );
    4547
     48/* wait for a condition variable broadcast from Init */
     49
    4650  status = pthread_mutex_lock( &Mutex_id );
    4751  assert( !status );
     
    5559  assert( !status );
    5660
     61  puts( "Task_1: task exit" );
    5762  pthread_exit( NULL );
    5863
  • testsuites/psxtests/psx10/task.c

    rc9c94387 r1d428a3c  
    2727  int  status;
    2828
     29/* wait for a condition variable signal from Init */
     30
    2931  Task_id = pthread_self();
    3032  printf( "Task_1: ID is 0x%08x\n", Task_id );
     
    4446  assert( !status );
    4547
     48/* wait for a condition variable broadcast from Init */
     49
    4650  status = pthread_mutex_lock( &Mutex_id );
    4751  assert( !status );
     
    5559  assert( !status );
    5660
     61  puts( "Task_1: task exit" );
    5762  pthread_exit( NULL );
    5863
Note: See TracChangeset for help on using the changeset viewer.