kernel: vm kernel call can't suspend
[minix.git] / servers / sched / proto.h
blob0e128733104b660c55e6b19bff612cc0d6dacb14
1 /* Function prototypes. */
3 struct schedproc;
4 #include <timers.h>
6 /* main.c */
7 int main(void);
8 void setreply(int proc_nr, int result);
10 /* schedule.c */
11 int do_noquantum(message *m_ptr);
12 int do_start_scheduling(message *m_ptr);
13 int do_stop_scheduling(message *m_ptr);
14 int do_nice(message *m_ptr);
15 void init_scheduling(void);
17 /* utility.c */
18 int no_sys(int who_e, int call_nr);
19 int sched_isokendpt(int ep, int *proc);
20 int sched_isemtyendpt(int ep, int *proc);
21 int accept_message(message *m_ptr);