use the spinlock_t header, and add the stubs to the kernel
[AROS.git] / rom / kernel / spininit.c
blob8702b1afb7794fea5c5ef77a96e283159c95e679
1 /*
2 Copyright © 2015, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 */
8 #include <aros/types/spinlock_s.h>
9 #include <aros/kernel.h>
10 #include <aros/libcall.h>
12 #include <kernel_base.h>
14 /*****************************************************************************
16 NAME */
17 #include <proto/kernel.h>
19 AROS_LH1(void, KrnSpinInit,
21 /* SYNOPSIS */
22 AROS_LHA(spinlock_t *, lock, A0),
24 /* LOCATION */
25 struct KernelBase *, KernelBase, 40, 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;
50 AROS_LIBFUNC_EXIT