about summary refs log tree commit diff
path: root/sysdeps/unix/sysv
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2018-04-19 00:09:58 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2018-04-19 00:09:58 +0200
commitc15f10ee78c6fa837732bb0b3d6cec44e4171fcd (patch)
tree866f1bd8fb5b0736fbbfa9cf4c09ef3f20e2a3e7 /sysdeps/unix/sysv
parent3dc0814cba86180c3ad478c81166220fb3e87ea5 (diff)
downloadglibc-c15f10ee78c6fa837732bb0b3d6cec44e4171fcd.tar.gz
glibc-c15f10ee78c6fa837732bb0b3d6cec44e4171fcd.tar.xz
glibc-c15f10ee78c6fa837732bb0b3d6cec44e4171fcd.zip
Revert "Fix sched_param"
This reverts commit 783c4820303fb6b031d401564f8089ecaf154b62 which
accidentaly flew out.
Diffstat (limited to 'sysdeps/unix/sysv')
-rw-r--r--sysdeps/unix/sysv/linux/bits/sched.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/bits/sched.h b/sysdeps/unix/sysv/linux/bits/sched.h
index 34f27a7d9b..24159c57b3 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 <bits/types/struct_sched_param.h>
+/* Data structure to describe a process' schedulability.  */
+struct sched_param
+{
+  int sched_priority;
+};
 
 __BEGIN_DECLS