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 | |
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')
-rw-r--r-- | ports/ARM7/chcore.h | 6 | ||||
-rw-r--r-- | ports/ARMCM3/chcore.h | 6 | ||||
-rw-r--r-- | ports/AVR/chcore.h | 6 | ||||
-rw-r--r-- | ports/MSP430/chcore.h | 6 |
4 files changed, 12 insertions, 12 deletions
diff --git a/ports/ARM7/chcore.h b/ports/ARM7/chcore.h index ed994ac10..0655f56ab 100644 --- a/ports/ARM7/chcore.h +++ b/ports/ARM7/chcore.h @@ -124,9 +124,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) + \
sizeof(struct extctx) + \
diff --git a/ports/ARMCM3/chcore.h b/ports/ARMCM3/chcore.h index a0f0c4f4e..6d3599936 100644 --- a/ports/ARMCM3/chcore.h +++ b/ports/ARMCM3/chcore.h @@ -132,9 +132,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) + \
sizeof(struct extctx) + \
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) + \
diff --git a/ports/MSP430/chcore.h b/ports/MSP430/chcore.h index b090cffba..807e7168f 100644 --- a/ports/MSP430/chcore.h +++ b/ports/MSP430/chcore.h @@ -121,9 +121,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) + \
sizeof(struct extctx) + \
|