minix/include/minix/sched.h
Ben Gras 6a73e85ad1 retire _PROTOTYPE
. only good for obsolete K&R support
	. also remove a stray ansi.h and the proto cmd
2012-03-25 16:17:10 +02:00

14 lines
450 B
C

#ifndef _MINIX_SCHED_H
#define _MINIX_SCHED_H
#include <minix/ipc.h>
int sched_stop(endpoint_t scheduler_e, endpoint_t schedulee_e);
int sched_start(endpoint_t scheduler_e, endpoint_t schedulee_e,
endpoint_t parent_e, int maxprio, int quantum, int cpu, endpoint_t
*newscheduler_e);
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 */