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 /*****************************************************************************
16 #include <proto/kernel.h>
18 AROS_LH1(void, KrnScheduleCPU
,
21 AROS_LHA(void *, cpu_mask
, A0
),
24 struct KernelBase
*, KernelBase
, 47, Kernel
)
27 Run task scheduling sequence on all CPUs given in the cpu_mask
30 Pointer to CPU Affinity mask.
36 This entry point directly calls task scheduling routine
37 in supervisor mode. It neither performs any checks of caller status
38 nor obeys interrupt enable state.
40 This function is safe to call only from within user mode.
41 This function is considered internal, and not meant to be called
52 ******************************************************************************/
56 krnSysCall(SC_SCHEDULE
);