aboutsummaryrefslogtreecommitdiffstats
path: root/demos/Win32-MinGW/chcore.h
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-12-29 08:58:17 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-12-29 08:58:17 +0000
commit5300fced15f40774f8fcf75904373541ea351efa (patch)
treeb827e1e605bfed623163bf18d64ab08d0e1bd5c6 /demos/Win32-MinGW/chcore.h
parentb1e4025ebd651cc922e3fcfb0706a7b8c7cabeba (diff)
downloadChibiOS-5300fced15f40774f8fcf75904373541ea351efa.tar.gz
ChibiOS-5300fced15f40774f8fcf75904373541ea351efa.tar.bz2
ChibiOS-5300fced15f40774f8fcf75904373541ea351efa.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@553 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/Win32-MinGW/chcore.h')
-rw-r--r--demos/Win32-MinGW/chcore.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/demos/Win32-MinGW/chcore.h b/demos/Win32-MinGW/chcore.h
index 9c7f9e8c1..d1f209a68 100644
--- a/demos/Win32-MinGW/chcore.h
+++ b/demos/Win32-MinGW/chcore.h
@@ -78,11 +78,11 @@ typedef struct {
#define STACK_ALIGN(n) ((((n) - 1) | sizeof(stkalign_t)) + 1)
-#define THD_WA_SIZE(n) StackAlign(sizeof(Thread) + \
- sizeof(void *) * 2 + \
- sizeof(struct intctx) + \
- (n) + \
- INT_REQUIRED_STACK)
+#define THD_WA_SIZE(n) STACK_ALIGN(sizeof(Thread) + \
+ sizeof(void *) * 2 + \
+ sizeof(struct intctx) + \
+ (n) + \
+ INT_REQUIRED_STACK)
#define WORKING_AREA(s, n) stkalign_t s[THD_WA_SIZE(n) / sizeof(stkalign_t)];