pull in config.h to get __AROSEXEC_SMP__ if it is defined
[AROS.git] / arch / arm-native / exec / exec_platform.h
blob867ea51f29f3c426773b710dd4b9925001452184
1 /*
2 Copyright © 2015, The AROS Development Team. All rights reserved.
3 $Id$
4 */
5 #ifndef __EXEC_PLATFORM_H
6 #define __EXEC_PLATFORM_H
8 // needed to determine if this is an smp build..
9 #include <aros/config.h>
11 #include "tls.h"
13 struct Exec_PlatformData
15 /* No platform-specific data by default */
18 #define GET_THIS_TASK TLS_GET(ThisTask)
19 #define SET_THIS_TASK(x) TLS_SET(ThisTask,(x))
21 #endif /* __EXEC_PLATFORM_H */