From 52b8c93b7180eac72721d59315aae2b592e7b3a1 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Wed, 20 Feb 2019 12:00:12 -0500 Subject: add symbols from POSIX.1b-1993 --- src/sched/struct_sched_param.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/sched/struct_sched_param.c (limited to 'src/sched/struct_sched_param.c') diff --git a/src/sched/struct_sched_param.c b/src/sched/struct_sched_param.c new file mode 100644 index 00000000..1ef5bf55 --- /dev/null +++ b/src/sched/struct_sched_param.c @@ -0,0 +1,15 @@ +#include + +struct sched_param { + int sched_priority; + #if defined _POSIX_SS || defined _POSIX_TSP + int sched_ss_low_priority; + struct timespec sched_ss_repl_period; + struct timespec sched_ss_init_budget; + int sched_ss_max_repl; + #endif +}; + +/* +POSIX(199309) +*/ -- cgit v1.2.1