
This patch moves more includes (most of them, to tell the truth) to common/include directory. This completes the list of includes needed to compile current trunk with the new libc (but to do that you need more patches in queue). This patch also contains some modification (for compilation with new headers) to the common includes under __NBSD_LIBC, the define used in mk script to specialize compilation with new includes.
15 lines
496 B
C
15 lines
496 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, int maxprio, int quantum, int cpu,
|
|
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 */
|