update the nightly configuration for x68_64 target to the newest toolchain. (NicJA)
[AROS.git] / rom / kernel / clearcpumask.c
blobc03edf9c4c9f0f39e7a7493db7974ff938da6e48
1 /*
2 Copyright © 2017, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 */
8 #include <aros/kernel.h>
9 #include <aros/libcall.h>
11 #include <kernel_base.h>
13 /*****************************************************************************
15 NAME */
16 #include <proto/kernel.h>
18 AROS_LH1(void, KrnClearCPUMask,
20 /* SYNOPSIS */
21 AROS_LHA(void *, mask, A0),
23 /* LOCATION */
24 struct KernelBase *, KernelBase, 44, Kernel)
26 /* FUNCTION
27 Clear the affinity mask for (re)use.
29 INPUTS
31 RESULT
33 NOTES
35 EXAMPLE
37 BUGS
39 SEE ALSO
40 KrnGetCPUNumber(), KrnAllocCPUMask(), KrnGetCPUMask(), KrnCPUInMask()
42 INTERNALS
44 ******************************************************************************/
46 AROS_LIBFUNC_INIT
48 /* The actual implementation is entirely architecture-specific */
49 return;
51 AROS_LIBFUNC_EXIT