From c1131b6eb7d859fdc2a3b3837b88619c99b44831 Mon Sep 17 00:00:00 2001 From: Gaurav Aggarwal Date: Fri, 25 Sep 2020 14:53:56 -0700 Subject: [PATCH] Update comment Signed-off-by: Gaurav Aggarwal --- portable/MPLAB/PIC32MX/port.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/portable/MPLAB/PIC32MX/port.c b/portable/MPLAB/PIC32MX/port.c index 73a757b79..386b98b0f 100644 --- a/portable/MPLAB/PIC32MX/port.c +++ b/portable/MPLAB/PIC32MX/port.c @@ -159,7 +159,8 @@ const StackType_t * const xISRStackTop = &( xISRStack[ ( configISR_STACK_SIZE & */ StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, TaskFunction_t pxCode, void *pvParameters ) { - /* Ensure 8 byte alignment is maintained when leaving this function. */ + /* Ensure 8 byte alignment is maintained when the context is popped from + * stack. The size of the context is 33 words (132 bytes). */ pxTopOfStack--; pxTopOfStack--;