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. --- sysdeps/unix/sysv/linux/bits/sched.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'sysdeps/unix/sysv/linux') diff --git a/sysdeps/unix/sysv/linux/bits/sched.h b/sysdeps/unix/sysv/linux/bits/sched.h index 34f27a7..24159c5 100644 --- a/sysdeps/unix/sysv/linux/bits/sched.h +++ b/sysdeps/unix/sysv/linux/bits/sched.h @@ -71,7 +71,11 @@ # define CLONE_IO 0x80000000 /* Clone I/O context. */ #endif -#include +/* Data structure to describe a process' schedulability. */ +struct sched_param +{ + int sched_priority; +}; __BEGIN_DECLS -- cgit v1.1