diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-01-11 10:31:30 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-01-11 10:31:30 +0000 |
commit | 36c9110259212470667c7cc95bb99ca577945d87 (patch) | |
tree | 4a2efb179163c6c5b63ee6f24c4a793a97064a90 /ports/AVR | |
parent | ce006bda5a48116c5a6a9b3bf6cd6c3e60f4a5fc (diff) | |
download | ChibiOS-36c9110259212470667c7cc95bb99ca577945d87.tar.gz ChibiOS-36c9110259212470667c7cc95bb99ca577945d87.tar.bz2 ChibiOS-36c9110259212470667c7cc95bb99ca577945d87.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@618 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'ports/AVR')
-rw-r--r-- | ports/AVR/chcore.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ports/AVR/chcore.h b/ports/AVR/chcore.h index b967cb9a0..34eba546c 100644 --- a/ports/AVR/chcore.h +++ b/ports/AVR/chcore.h @@ -148,9 +148,9 @@ typedef struct { */
#define STACK_ALIGN(n) ((((n) - 1) | sizeof(stkalign_t)) + 1)
- /**
- * Computes the thread working area global size.
- */
+/**
+ * Computes the thread working area global size.
+ */
#define THD_WA_SIZE(n) STACK_ALIGN(sizeof(Thread) + \
(sizeof(struct intctx) - 1) + \
(sizeof(struct extctx) - 1) + \
|