root / lab4 / .minix-src / include / minix / sched.h @ 13
History | View | Annotate | Download (450 Bytes)
1 |
#ifndef _MINIX_SCHED_H
|
---|---|
2 |
#define _MINIX_SCHED_H
|
3 |
|
4 |
#include <minix/ipc.h> |
5 |
|
6 |
int sched_stop(endpoint_t scheduler_e, endpoint_t schedulee_e);
|
7 |
int sched_start(endpoint_t scheduler_e, endpoint_t schedulee_e,
|
8 |
endpoint_t parent_e, int maxprio, int quantum, int cpu, endpoint_t |
9 |
*newscheduler_e); |
10 |
int sched_inherit(endpoint_t scheduler_e, endpoint_t schedulee_e,
|
11 |
endpoint_t parent_e, unsigned maxprio, endpoint_t *newscheduler_e);
|
12 |
|
13 |
#endif /* _MINIX_SCHED_H */ |