diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-04-19 00:09:58 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-04-19 00:09:58 +0200 |
commit | c15f10ee78c6fa837732bb0b3d6cec44e4171fcd (patch) | |
tree | 866f1bd8fb5b0736fbbfa9cf4c09ef3f20e2a3e7 /sysdeps/htl/bits | |
parent | 3dc0814cba86180c3ad478c81166220fb3e87ea5 (diff) | |
download | glibc-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/htl/bits')
-rw-r--r-- | sysdeps/htl/bits/types/struct___pthread_attr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/htl/bits/types/struct___pthread_attr.h b/sysdeps/htl/bits/types/struct___pthread_attr.h index 5c4b4e6c30..2299c0179f 100644 --- a/sysdeps/htl/bits/types/struct___pthread_attr.h +++ b/sysdeps/htl/bits/types/struct___pthread_attr.h @@ -19,7 +19,7 @@ #ifndef _BITS_TYPES_STRUCT___PTHREAD_ATTR #define _BITS_TYPES_STRUCT___PTHREAD_ATTR 1 -#include <bits/types/struct___sched_param.h> +#include <sched.h> #define __need_size_t #include <stddef.h> @@ -32,7 +32,7 @@ enum __pthread_contentionscope; that not all of them are supported on all systems. */ struct __pthread_attr { - struct __sched_param __schedparam; + struct sched_param __schedparam; void *__stackaddr; size_t __stacksize; size_t __guardsize; |