2 Copyright © 2017, The AROS Development Team. All rights reserved.
8 #include <aros/kernel.h>
10 #include <kernel_base.h>
11 #include <kernel_syscall.h>
13 #include "kernel_ipi.h"
15 /*****************************************************************************
18 #include <proto/kernel.h>
20 AROS_LH1(void, KrnScheduleCPU
,
23 AROS_LHA(void *, cpu_mask
, A0
),
26 struct KernelBase
*, KernelBase
, 47, Kernel
)
29 Run task scheduling sequence on all CPUs given in the cpu_mask
38 This entry point directly calls task scheduling routine
39 in supervisor mode. It neither performs any checks of caller status
40 nor obeys interrupt enable state.
42 This function is safe to call only from within user mode.
43 This function is considered internal, and not meant to be called
54 ******************************************************************************/
58 core_DoIPI(IPI_RESCHEDULE
, cpu_mask
, KernelBase
);