revert between 56095 -> 55830 in arch
[AROS.git] / rom / kernel / cause.c
blob76d4ad84bbbf542a75529bfa31468f94ab917647
1 /*
2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 */
8 #include <aros/kernel.h>
10 #include <kernel_base.h>
11 #include <kernel_syscall.h>
13 /*****************************************************************************
15 NAME */
16 #include <proto/kernel.h>
18 AROS_LH0I(void, KrnCause,
20 /* SYNOPSIS */
22 /* LOCATION */
23 struct KernelBase *, KernelBase, 3, Kernel)
25 /* FUNCTION
26 Run software interrupt processing sequence
28 INPUTS
29 None
31 RESULT
32 None
34 NOTES
35 This entry point directly calls interrupt processing routine
36 in supervisor mode. It neither performs any checks of caller status
37 nor obeys interrupt enable state.
39 This function is safe to call only from within user mode.
40 This function is considered internal, and not meant to be called
41 by user's software.
43 EXAMPLE
45 BUGS
47 SEE ALSO
49 INTERNALS
51 ******************************************************************************/
53 AROS_LIBFUNC_INIT
55 krnSysCall(SC_CAUSE);
57 AROS_LIBFUNC_EXIT