new syscall - SC_CACHECLEARE which is just a wrapper around exec.library's function...
[AROS.git] / rom / kernel / kernel_syscall.h
blob0ef8cc86dc11358b91be970a83b6d70a76a5bfaf
1 /*
2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 */
8 /*
9 * List of all possible syscalls. They are private and there's no need
10 * to implement all of them.
13 #ifndef KERNEL_SYSCALL_H_
14 #define KERNEL_SYSCALL_H_
16 #define SC_CAUSE 0x000
17 #define SC_DISPATCH 0x001
18 #define SC_SWITCH 0x002
19 #define SC_SCHEDULE 0x003
20 #define SC_CLI 0x004
21 #define SC_STI 0x005
22 #define SC_SUPERSTATE 0x006
23 #define SC_ISSUPERSTATE 0x007
24 #define SC_INVALIDATED 0x008
25 #define SC_RTAS 0x009
26 #define SC_SUPERVISOR 0x00A
27 #define SC_CACHECLEARE 0x00B
28 #define SC_REBOOT 0x100
30 #endif