]> git.ipfire.org Git - thirdparty/glibc.git/blame - include/sched.h
Further harden glibc malloc metadata against 1-byte overflows.
[thirdparty/glibc.git] / include / sched.h
CommitLineData
6796bc80
UD
1#ifndef _SCHED_H
2#include <posix/sched.h>
bdbf022d 3
31341567 4#ifndef _ISOMAC
bdbf022d 5/* Now define the internal interfaces. */
fe559c5e 6extern int __sched_setparam (__pid_t __pid,
a784e502 7 const struct sched_param *__param);
c19559b0 8extern int __sched_getparam (__pid_t __pid, struct sched_param *__param);
fe559c5e 9extern int __sched_setscheduler (__pid_t __pid, int __policy,
a784e502 10 const struct sched_param *__param);
37ba7d66 11libc_hidden_proto (__sched_setscheduler)
c19559b0
UD
12extern int __sched_getscheduler (__pid_t __pid);
13extern int __sched_yield (void);
bd7d6b40 14libc_hidden_proto (__sched_yield)
c19559b0
UD
15extern int __sched_get_priority_max (int __algorithm);
16extern int __sched_get_priority_min (int __algorithm);
17extern int __sched_rr_get_interval (__pid_t __pid, struct timespec *__t);
bdbf022d 18
37d33038 19/* These are Linux specific. */
fe559c5e 20extern int __clone (int (*__fn) (void *__arg), void *__child_stack,
2a76f7ef 21 int __flags, void *__arg, ...);
9ff72da4 22libc_hidden_proto (__clone)
37d33038 23extern int __clone2 (int (*__fn) (void *__arg), void *__child_stack_base,
4f6f0a8f 24 size_t __child_stack_size, int __flags, void *__arg, ...);
9ff72da4 25libc_hidden_proto (__clone2)
6796bc80 26#endif
31341567 27#endif