summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psx11/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psx11/init.c')
-rw-r--r--testsuites/psxtests/psx11/init.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/testsuites/psxtests/psx11/init.c b/testsuites/psxtests/psx11/init.c
index 766e1df382..cbea072ae5 100644
--- a/testsuites/psxtests/psx11/init.c
+++ b/testsuites/psxtests/psx11/init.c
@@ -1,4 +1,4 @@
-/*
+/*
* COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
*
@@ -31,7 +31,7 @@ void *POSIX_Init(
Init_id = pthread_self();
printf( "Init's ID is 0x%08x\n", Init_id );
-
+
/* exercise pthread_setschedparam */
param.sched_priority = 127;
@@ -53,33 +53,33 @@ void *POSIX_Init(
assert( !status );
/* create a thread as SCHED_FIFO */
-
+
puts( "Init: create a thread of SCHED_FIFO with priority 120" );
status = pthread_attr_init( &attr );
assert( !status );
-
+
attr.schedpolicy = SCHED_FIFO;
attr.schedparam.sched_priority = 120;
-
+
status = pthread_create( &Task_id, &attr, Task_1, NULL );
assert( !status );
-
+
puts( "Init: join with the other thread" );
status = pthread_join( Task_id, NULL );
assert( !status );
/* create a thread as SCHED_RR */
-
+
puts( "Init: create a thread of SCHED_RR with priority 120" );
status = pthread_attr_init( &attr );
assert( !status );
-
+
attr.schedpolicy = SCHED_RR;
attr.schedparam.sched_priority = 120;
-
+
status = pthread_create( &Task_id, &attr, Task_1, NULL );
assert( !status );
-
+
puts( "Init: join with the other thread" );
status = pthread_join( Task_id, NULL );
assert( !status );