summaryrefslogtreecommitdiffstats
path: root/c/src/tests/psxtests/psxhdrs/pthread11.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/tests/psxtests/psxhdrs/pthread11.c')
-rw-r--r--c/src/tests/psxtests/psxhdrs/pthread11.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/c/src/tests/psxtests/psxhdrs/pthread11.c b/c/src/tests/psxtests/psxhdrs/pthread11.c
index 521ff7616d..38de2d1c71 100644
--- a/c/src/tests/psxtests/psxhdrs/pthread11.c
+++ b/c/src/tests/psxtests/psxhdrs/pthread11.c
@@ -31,12 +31,22 @@ void test( void )
policy = SCHED_OTHER;
policy = SCHED_FIFO;
policy = SCHED_RR;
+#ifdef _POSIX_SPORADIC_SERVER
+ policy = SCHED_SPORADIC;
+#endif
/*
* really should use sched_get_priority_min() and sched_get_priority_max()
*/
param.sched_priority = 0;
+#ifdef _POSIX_SPORADIC_SERVER
+ param.ss_low_priority = 0;
+ param.ss_replenish_period.tv_sec = 0;
+ param.ss_replenish_period.tv_nsec = 0;
+ param.ss_initial_budget.tv_sec = 0;
+ param.ss_initial_budget.tv_nsec = 0;
+#endif
result = pthread_setschedparam( thread, policy, &param );
}