small typo
[AROS.git] / rom / kernel / spinlock.c
blobe88a9c0dc88641a97ba4e0f6964399b69ec051e3
1 /*
2 Copyright © 2015, 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_LH2(spinlock_t *, KrnSpinLock,
20 /* SYNOPSIS */
21 AROS_LHA(spinlock_t *, lock, A0),
22 AROS_LHA(ULONG, mode, D0),
24 /* LOCATION */
25 struct KernelBase *, KernelBase, 38, Kernel)
27 /* FUNCTION
29 INPUTS
31 RESULT
33 NOTES
35 EXAMPLE
37 BUGS
39 SEE ALSO
41 INTERNALS
43 ******************************************************************************/
45 AROS_LIBFUNC_INIT
47 /* The implementation of this function is architecture-specific */
48 return lock;
50 AROS_LIBFUNC_EXIT