15 lines
497 B
C
15 lines
497 B
C
#ifndef _MINIX_SCHED_H
|
|
#define _MINIX_SCHED_H
|
|
|
|
#include <minix/ipc.h>
|
|
|
|
_PROTOTYPE(int sched_stop, (endpoint_t scheduler_e, endpoint_t schedulee_e));
|
|
_PROTOTYPE(int sched_start, (endpoint_t scheduler_e, endpoint_t schedulee_e,
|
|
endpoint_t parent_e, unsigned maxprio, unsigned quantum,
|
|
endpoint_t *newscheduler_e));
|
|
_PROTOTYPE(int sched_inherit, (endpoint_t scheduler_e,
|
|
endpoint_t schedulee_e, endpoint_t parent_e, unsigned maxprio,
|
|
endpoint_t *newscheduler_e));
|
|
|
|
#endif /* _MINIX_SCHED_H */
|