add some functions related to migration into kernel/process.h

... and also add include guard to arch/x86/kernel/include/signal.h
This commit is contained in:
YOSHIDA Masanori
2014-06-25 17:25:47 +09:00
committed by Masamichi Takagi
parent 170a54d976
commit 3751fa1766
3 changed files with 9 additions and 0 deletions

View File

@ -261,4 +261,7 @@ void runq_add_proc(struct process *proc, int cpu_id);
void runq_del_proc(struct process *proc, int cpu_id);
int sched_wakeup_process(struct process *proc, int valid_states);
void sched_request_migrate(int cpu_id, struct process *proc);
void check_need_resched(void);
#endif