From 61a21330cb5e9cbf6a0c929133149cd97ca1904b Mon Sep 17 00:00:00 2001 From: NicJA Date: Thu, 30 Apr 2015 01:54:12 +0000 Subject: [PATCH] placeholder git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@50515 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- rom/kernel/spininit.c | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 rom/kernel/spininit.c diff --git a/rom/kernel/spininit.c b/rom/kernel/spininit.c new file mode 100644 index 0000000000..548e01e662 --- /dev/null +++ b/rom/kernel/spininit.c @@ -0,0 +1,50 @@ +/* + Copyright © 2015, The AROS Development Team. All rights reserved. + $Id$ + + Desc: +*/ + +#include +#include + +#include + +/***************************************************************************** + + NAME */ +#include + + AROS_LH1(void, KrnSpinInit, + +/* SYNOPSIS */ + AROS_LHA(spinlock_t *, lock, A0), + +/* LOCATION */ + struct KernelBase *, KernelBase, 38, Kernel) + +/* FUNCTION + + INPUTS + + RESULT + + NOTES + + EXAMPLE + + BUGS + + SEE ALSO + + INTERNALS + +******************************************************************************/ +{ + AROS_LIBFUNC_INIT + + /* The implementation of this function is architecture-specific */ + return; + + AROS_LIBFUNC_EXIT +} -- 2.11.4.GIT