summaryrefslogtreecommitdiffstats
path: root/c/src/tests/psxtests/psxhdrs/sched01.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-05-24 14:16:24 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-05-24 14:16:24 +0000
commit6481405e5c6feb265efbea9549f7a1107f08de08 (patch)
treea1c6d812d5d21df209f380af2da8cb7eb60558cb /c/src/tests/psxtests/psxhdrs/sched01.c
parentnew files (diff)
downloadrtems-6481405e5c6feb265efbea9549f7a1107f08de08.tar.bz2
added use of sporadic server scheduling parameters
Diffstat (limited to 'c/src/tests/psxtests/psxhdrs/sched01.c')
-rw-r--r--c/src/tests/psxtests/psxhdrs/sched01.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/c/src/tests/psxtests/psxhdrs/sched01.c b/c/src/tests/psxtests/psxhdrs/sched01.c
index 56695ade58..5b2bc0b76f 100644
--- a/c/src/tests/psxtests/psxhdrs/sched01.c
+++ b/c/src/tests/psxtests/psxhdrs/sched01.c
@@ -27,7 +27,18 @@ void test( void )
pid = 0;
+ /*
+ * 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 = sched_setparam( pid, &param );
}