Update.
[platform/upstream/glibc.git] / include / sched.h
1 #ifndef _SCHED_H
2 #include <posix/sched.h>
3
4 /* Now define the internal interfaces.  */
5 extern int __sched_setparam (__pid_t __pid,
6                              __const struct sched_param *__param);
7 extern int __sched_getparam (__pid_t __pid, struct sched_param *__param);
8 extern int __sched_setscheduler (__pid_t __pid, int __policy,
9                                  __const struct sched_param *__param);
10 extern int __sched_getscheduler (__pid_t __pid);
11 extern int __sched_yield (void);
12 extern int __sched_get_priority_max (int __algorithm);
13 extern int __sched_get_priority_min (int __algorithm);
14 extern int __sched_rr_get_interval (__pid_t __pid, struct timespec *__t);
15
16 /* This is Linux specific.  */
17 extern int __clone (int (*__fn) (void *__arg), void *__child_stack,
18                     int __flags, void *__arg);
19 #endif