diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-04-18 00:27:31 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-04-18 21:07:44 +0200 |
commit | 783c4820303fb6b031d401564f8089ecaf154b62 (patch) | |
tree | 34cd40325e7f9d97a0fbc49f159f892cb5cb1671 /sysdeps/unix/sysv/linux | |
parent | d6397de369d006da516cb560adfa2c181b6f4698 (diff) | |
download | glibc-783c4820303fb6b031d401564f8089ecaf154b62.tar.gz glibc-783c4820303fb6b031d401564f8089ecaf154b62.tar.xz glibc-783c4820303fb6b031d401564f8089ecaf154b62.zip |
Fix sched_param
Diffstat (limited to 'sysdeps/unix/sysv/linux')
-rw-r--r-- | sysdeps/unix/sysv/linux/bits/sched.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sysdeps/unix/sysv/linux/bits/sched.h b/sysdeps/unix/sysv/linux/bits/sched.h index 24159c57b3..34f27a7d9b 100644 --- a/sysdeps/unix/sysv/linux/bits/sched.h +++ b/sysdeps/unix/sysv/linux/bits/sched.h @@ -71,11 +71,7 @@ # define CLONE_IO 0x80000000 /* Clone I/O context. */ #endif -/* Data structure to describe a process' schedulability. */ -struct sched_param -{ - int sched_priority; -}; +#include <bits/types/struct_sched_param.h> __BEGIN_DECLS |