1#ifndef _SCHED_H
2#include <posix/sched.h>
3
4#ifndef _ISOMAC
5/* Now define the internal interfaces. */
6extern int __sched_setparam (__pid_t __pid,
7 const struct sched_param *__param);
8extern int __sched_getparam (__pid_t __pid, struct sched_param *__param);
9extern int __sched_setscheduler (__pid_t __pid, int __policy,
10 const struct sched_param *__param);
11libc_hidden_proto (__sched_setscheduler)
12extern int __sched_getscheduler (__pid_t __pid);
13extern int __sched_yield (void);
14libc_hidden_proto (__sched_yield)
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);
18
19/* These are Linux specific. */
20extern int __clone (int (*__fn) (void *__arg), void *__child_stack,
21 int __flags, void *__arg, ...);
22libc_hidden_proto (__clone)
23extern int __clone2 (int (*__fn) (void *__arg), void *__child_stack_base,
24 size_t __child_stack_size, int __flags, void *__arg, ...);
25libc_hidden_proto (__clone2)
26#endif
27#endif
28