Changeset fc960ab in rtems
- Timestamp:
- 08/13/96 15:35:36 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 9b67f170
- Parents:
- 0d59c7a
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/tests/psxtests/psx03/task.c
r0d59c7a rfc960ab 31 31 /* send SIGUSR2 to Init which is waiting on SIGUSR1 */ 32 32 33 print_current_time( "Task1: ", "" ); 33 print_current_time( "Task_1: ", "" ); 34 35 puts( "Task_1: pthread_kill - SIGUSR2 to Init" ); 34 36 status = pthread_kill( Init_id, SIGUSR2 ); 35 37 assert( !status ); … … 50 52 /* send SIGUSR1 to Init which is waiting on SIGUSR1 */ 51 53 52 print_current_time( "Task2: ", "" ); 54 print_current_time( "Task_2: ", "" ); 55 56 puts( "Task_1: pthread_kill - SIGUSR1 to Init" ); 53 57 status = pthread_kill( Init_id, SIGUSR1 ); 54 58 assert( !status ); -
testsuites/psxtests/psx03/task.c
r0d59c7a rfc960ab 31 31 /* send SIGUSR2 to Init which is waiting on SIGUSR1 */ 32 32 33 print_current_time( "Task1: ", "" ); 33 print_current_time( "Task_1: ", "" ); 34 35 puts( "Task_1: pthread_kill - SIGUSR2 to Init" ); 34 36 status = pthread_kill( Init_id, SIGUSR2 ); 35 37 assert( !status ); … … 50 52 /* send SIGUSR1 to Init which is waiting on SIGUSR1 */ 51 53 52 print_current_time( "Task2: ", "" ); 54 print_current_time( "Task_2: ", "" ); 55 56 puts( "Task_1: pthread_kill - SIGUSR1 to Init" ); 53 57 status = pthread_kill( Init_id, SIGUSR1 ); 54 58 assert( !status );
Note: See TracChangeset
for help on using the changeset viewer.