summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-08-13 15:35:36 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-08-13 15:35:36 +0000
commitfc960ab03c7e5ec6f6be46186f368e859d5f2764 (patch)
tree19f411976033891fbecc2cd4b4c051c2a2c2d377 /testsuites/psxtests
parentadded include of errno.h so the test can check for EINTR. (diff)
downloadrtems-fc960ab03c7e5ec6f6be46186f368e859d5f2764.tar.bz2
chenaged format of output
Diffstat (limited to 'testsuites/psxtests')
-rw-r--r--testsuites/psxtests/psx03/task.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/testsuites/psxtests/psx03/task.c b/testsuites/psxtests/psx03/task.c
index 5c7b1ca753..b04bf6827b 100644
--- a/testsuites/psxtests/psx03/task.c
+++ b/testsuites/psxtests/psx03/task.c
@@ -30,7 +30,9 @@ void *Task_1(
/* send SIGUSR2 to Init which is waiting on SIGUSR1 */
- print_current_time( "Task1: ", "" );
+ print_current_time( "Task_1: ", "" );
+
+ puts( "Task_1: pthread_kill - SIGUSR2 to Init" );
status = pthread_kill( Init_id, SIGUSR2 );
assert( !status );
@@ -49,7 +51,9 @@ void *Task_2(
/* send SIGUSR1 to Init which is waiting on SIGUSR1 */
- print_current_time( "Task2: ", "" );
+ print_current_time( "Task_2: ", "" );
+
+ puts( "Task_1: pthread_kill - SIGUSR1 to Init" );
status = pthread_kill( Init_id, SIGUSR1 );
assert( !status );