]> git.saurik.com Git - apple/libc.git/blame - pthreads/sched.h
Libc-262.3.2.tar.gz
[apple/libc.git] / pthreads / sched.h
CommitLineData
e9ce8d39
A
1#ifndef _SCHED_H_
2#define _SCHED_H_
3
4#include <pthread_impl.h>
5
6/*
7 * Scheduling paramters
8 */
9#ifndef __POSIX_LIB__
10struct sched_param { int sched_priority; char opaque[__SCHED_PARAM_SIZE__]; };
11#endif
12
13extern int sched_yield(void);
14extern int sched_get_priority_min(int);
15extern int sched_get_priority_max(int);
16#endif /* _SCHED_H_ */
17