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 /bits/sched.h | |
parent | Make build-many-glibcs.py build GCC for powerpcspe with --enable-obsolete. (diff) | |
download | glibc-783c4820303fb6b031d401564f8089ecaf154b62.tar.gz glibc-783c4820303fb6b031d401564f8089ecaf154b62.tar.bz2 glibc-783c4820303fb6b031d401564f8089ecaf154b62.zip |
Fix sched_param
Diffstat (limited to 'bits/sched.h')
-rw-r--r-- | bits/sched.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/bits/sched.h b/bits/sched.h index 8d9f077eee..bdd94c969d 100644 --- a/bits/sched.h +++ b/bits/sched.h @@ -29,10 +29,6 @@ #define SCHED_FIFO 1 #define SCHED_RR 2 -/* Data structure to describe a process' schedulability. */ -struct sched_param -{ - int sched_priority; -}; +#include <bits/types/struct_sched_param.h> #endif /* bits/sched.h */ |