From c15f10ee78c6fa837732bb0b3d6cec44e4171fcd Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Thu, 19 Apr 2018 00:09:58 +0200 Subject: Revert "Fix sched_param" This reverts commit 783c4820303fb6b031d401564f8089ecaf154b62 which accidentaly flew out. --- bits/sched.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'bits/sched.h') diff --git a/bits/sched.h b/bits/sched.h index bdd94c969d..8d9f077eee 100644 --- a/bits/sched.h +++ b/bits/sched.h @@ -29,6 +29,10 @@ #define SCHED_FIFO 1 #define SCHED_RR 2 -#include +/* Data structure to describe a process' schedulability. */ +struct sched_param +{ + int sched_priority; +}; #endif /* bits/sched.h */ -- cgit 1.4.1