Minor fixes to comments.
[AROS.git] / rom / kernel / getcpunumber.c
blob0d6d2f699007d24f32ba33f6f58f3940de9b29d5
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, KrnGetCPUNumber,
13 /* SYNOPSIS */
15 /* LOCATION */
16 struct KernelBase *, KernelBase, 37, Kernel)
18 /* FUNCTION
19 Return number of the caller CPU
21 INPUTS
22 None
24 RESULT
25 Number of the CPU on which the function is called
27 NOTES
29 EXAMPLE
31 BUGS
33 SEE ALSO
35 INTERNALS
37 ******************************************************************************/
39 AROS_LIBFUNC_INIT
41 /* The actual implementation is entirely architecture-specific */
42 return 0;
44 AROS_LIBFUNC_EXIT