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) __THROW;
7 extern int __sched_getparam (__pid_t __pid, struct sched_param *__param) __THROW;
8 extern int __sched_setscheduler (__pid_t __pid, int __policy,
9                                  __const struct sched_param *__param) __THROW;
10 extern int __sched_getscheduler (__pid_t __pid) __THROW;
11 extern int __sched_yield (void) __THROW;
12 extern int __sched_get_priority_max (int __algorithm) __THROW;
13 extern int __sched_get_priority_min (int __algorithm) __THROW;
14 extern int __sched_rr_get_interval (__pid_t __pid, struct timespec *__t) __THROW;
15
16 /* This is Linux specific.  */
17 extern int __clone (int (*__fn) (void *__arg), void *__child_stack,
18                     int __flags, void *__arg) __THROW;
19 #endif