summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psx07/init.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-07-06 17:58:44 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-07-06 17:58:44 +0000
commit69ca55c0885c1410c3b25466ef7d862d112583e2 (patch)
tree78fb684af0476b5ea7fcc78ea3d94e439fa6dda5 /testsuites/psxtests/psx07/init.c
parent2009-07-06 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-69ca55c0885c1410c3b25466ef7d862d112583e2.tar.bz2
2009-07-06 Joel Sherrill <joel.sherrill@OARcorp.com>
* psx07/init.c: Slight test fix to ensure state of sched_param structure.
Diffstat (limited to 'testsuites/psxtests/psx07/init.c')
-rw-r--r--testsuites/psxtests/psx07/init.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/testsuites/psxtests/psx07/init.c b/testsuites/psxtests/psx07/init.c
index 8ebe6ca75c..c49ae5c250 100644
--- a/testsuites/psxtests/psx07/init.c
+++ b/testsuites/psxtests/psx07/init.c
@@ -504,7 +504,9 @@ void *POSIX_Init(
status = pthread_setschedparam( pthread_self(), SCHED_OTHER, NULL );
fatal_directive_check_status_only( status, EINVAL, "invalid priority" );
- schedparam.sched_priority = sched_get_priority_max(SCHED_OTHER);
+ /* reset sched_param */
+ status = pthread_getschedparam( pthread_self(), &schedpolicy, &schedparam );
+ posix_service_failed( status, "pthread_getschedparam");
puts( "Init: pthread_setschedparam - EINVAL (invalid policy)" );
status = pthread_setschedparam( pthread_self(), -1, &schedparam );