add defines for ipi types, and stub out handler
[AROS.git] / arch / arm-native / kernel / kernel_ipi.h
blobd2d75ac7ca1b0ac8b3aed07dbb6b134fad8361e3
1 #ifndef KERNEL_IPI_H_
2 #define KERNEL_IPI_H_
3 /*
4 Copyright © 2015, The AROS Development Team. All rights reserved.
5 $Id$
6 */
8 /*
9 * List of all possible (private) kernal IPI message types.
12 #define IPI_CAUSE 0x000
13 #define IPI_DISPATCH 0x001
14 #define IPI_SWITCH 0x002
15 #define IPI_SCHEDULE 0x003
16 #define IPI_CLI 0x004
17 #define IPI_STI 0x005
18 #define IPI_REBOOT 0x100
19 #define IPI_ADDTASK 0x101
20 #define IPI_REMTASK 0x102
22 #endif