Suspend process waiting for keyboard input
All checks were successful
Build documentation / build-and-deploy (push) Successful in 1m35s
All checks were successful
Build documentation / build-and-deploy (push) Successful in 1m35s
This commit is contained in:
@@ -288,9 +288,10 @@ bool proc_kill (struct proc* proc, struct cpu** reschedule_cpu) {
|
||||
return PROC_NEED_RESCHEDULE;
|
||||
}
|
||||
|
||||
static void proc_irq_sched (void* arg, void* regs) {
|
||||
(void)arg;
|
||||
static bool proc_irq_sched (struct cpu** reschedule_cpu, void* arg, void* regs) {
|
||||
(void)arg, (void)regs, (void)reschedule_cpu;
|
||||
proc_sched ();
|
||||
return PROC_NO_RESCHEDULE;
|
||||
}
|
||||
|
||||
void proc_init (void) {
|
||||
|
||||
Reference in New Issue
Block a user