Minor fixes to comments.
[AROS.git] / rom / kernel / getcpucount.c
blobc59aa59487c39f478ff19da2689126bb9515ce8c
1 #include <aros/kernel.h>
2 #include <aros/libcall.h>
4 #include <kernel_base.h>
6 /*****************************************************************************
8 NAME */
9 #include <proto/kernel.h>
11 AROS_LH0(unsigned int, KrnGetCPUCount,
13 /* SYNOPSIS */
15 /* LOCATION */
16 struct KernelBase *, KernelBase, 36, Kernel)
18 /* FUNCTION
19 Return total number of processors in the system
21 INPUTS
22 None
24 RESULT
25 Number of running CPUs in this system
27 NOTES
29 EXAMPLE
31 BUGS
33 SEE ALSO
35 INTERNALS
37 ******************************************************************************/
39 AROS_LIBFUNC_INIT
41 /* The implementation of this function is architecture-specific */
42 return 1;
44 AROS_LIBFUNC_EXIT