diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/templates/chcore.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/templates/chcore.h b/src/templates/chcore.h index 576fbf708..d8d3614c8 100644 --- a/src/templates/chcore.h +++ b/src/templates/chcore.h @@ -95,9 +95,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) + \
|