Test initialisation of MUIA_List_AdjustWidth and MUIA_List_AdjustHeight, and
[AROS.git] / arch / arm-native / kernel / spininit.c
blobcf541d18fd439b5d54ffc537f3cfa24ad7408b38
1 /*
2 Copyright © 2015, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <aros/types/spinlock_s.h>
7 #include <aros/kernel.h>
8 #include <aros/libcall.h>
10 #include <kernel_base.h>
12 #include <proto/kernel.h>
14 AROS_LH1(void, KrnSpinInit,
15 AROS_LHA(spinlock_t *, lock, A0),
16 struct KernelBase *, KernelBase, 40, Kernel)
18 AROS_LIBFUNC_INIT
20 lock->lock = 0;
22 return;
24 AROS_LIBFUNC_EXIT