diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-05-18 09:03:50 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-05-18 09:03:50 +0000 |
commit | b4aa14e88c9e28a16a5f9c0c220fac6cc36750ad (patch) | |
tree | fc775ac9004d2808a72e644c28629f53c4767411 /os/ports/GCC/SIMIA32 | |
parent | ade5cc3c6fdb41270ff0f483a8daa44d28d1064c (diff) | |
download | ChibiOS-b4aa14e88c9e28a16a5f9c0c220fac6cc36750ad.tar.gz ChibiOS-b4aa14e88c9e28a16a5f9c0c220fac6cc36750ad.tar.bz2 ChibiOS-b4aa14e88c9e28a16a5f9c0c220fac6cc36750ad.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2971 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/ports/GCC/SIMIA32')
-rw-r--r-- | os/ports/GCC/SIMIA32/chcore.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/os/ports/GCC/SIMIA32/chcore.h b/os/ports/GCC/SIMIA32/chcore.h index 266cfd955..05dc05db4 100644 --- a/os/ports/GCC/SIMIA32/chcore.h +++ b/os/ports/GCC/SIMIA32/chcore.h @@ -108,8 +108,8 @@ struct context { /**
* Stack size for the system idle thread.
*/
-#ifndef IDLE_THREAD_STACK_SIZE
-#define IDLE_THREAD_STACK_SIZE 256
+#ifndef PORT_IDLE_THREAD_STACK_SIZE
+#define PORT_IDLE_THREAD_STACK_SIZE 256
#endif
/**
@@ -118,8 +118,8 @@ struct context { * It requires stack space because the simulated "interrupt handlers" can
* invoke host library functions inside so it better have a lot of space.
*/
-#ifndef INT_REQUIRED_STACK
-#define INT_REQUIRED_STACK 16384
+#ifndef PORT_INT_REQUIRED_STACK
+#define PORT_INT_REQUIRED_STACK 16384
#endif
/**
@@ -134,7 +134,7 @@ struct context { sizeof(void *) * 4 + \
sizeof(struct intctx) + \
sizeof(struct extctx) + \
- (n) + (INT_REQUIRED_STACK))
+ (n) + (PORT_INT_REQUIRED_STACK))
/**
* Macro used to allocate a thread working area aligned as both position and
|