00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef _XENO_NUCLEUS_SCHEDPARAM_H
00021 #define _XENO_NUCLEUS_SCHEDPARAM_H
00022
00023 struct xnsched_idle_param {
00024 int prio;
00025 };
00026
00027 struct xnsched_rt_param {
00028 int prio;
00029 };
00030
00031 struct xnsched_tp_param {
00032 int prio;
00033 int ptid;
00034 };
00035
00036 struct xnsched_sporadic_param {
00037 xntime_t init_budget;
00038 xntime_t repl_period;
00039 int max_repl;
00040 int low_prio;
00041 int normal_prio;
00042 int current_prio;
00043 };
00044
00045 union xnsched_policy_param {
00046 struct xnsched_idle_param idle;
00047 struct xnsched_rt_param rt;
00048 #ifdef CONFIG_XENO_OPT_SCHED_TP
00049 struct xnsched_tp_param tp;
00050 #endif
00051 #ifdef CONFIG_XENO_OPT_SCHED_SPORADIC
00052 struct xnsched_sporadic_param pss;
00053 #endif
00054 };
00055
00056 #endif