summaryrefslogtreecommitdiff
path: root/src/sched/struct_sched_param.h
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2020-08-16 16:31:15 -0400
committerJakob Kaivo <jkk@ung.org>2020-08-16 16:31:15 -0400
commit24a60ffba1893a3506a6ed15fd4b26479d966cf3 (patch)
tree5b3ead7c1110b58b6c32829c48cff79cc346121a /src/sched/struct_sched_param.h
parent1c9b7df133f4130f7db4038d0b034418c5867ac1 (diff)
rename non-compiled files to *.h
Diffstat (limited to 'src/sched/struct_sched_param.h')
-rw-r--r--src/sched/struct_sched_param.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/sched/struct_sched_param.h b/src/sched/struct_sched_param.h
new file mode 100644
index 00000000..1ef5bf55
--- /dev/null
+++ b/src/sched/struct_sched_param.h
@@ -0,0 +1,15 @@
+#include <sched.h>
+
+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)
+*/