gdbstub: added cpu id of running tasks to the output

This commit is contained in:
Felipe Neves
2020-04-16 17:48:01 -03:00
committed by bot
parent 5279e68146
commit c296d01737
3 changed files with 32 additions and 1 deletions

View File

@@ -200,6 +200,7 @@ typedef struct xTASK_SNAPSHOT
StackType_t *pxEndOfStack; /*!< Points to the end of the stack. pxTopOfStack < pxEndOfStack, stack grows hi2lo
pxTopOfStack > pxEndOfStack, stack grows lo2hi*/
eTaskState eState; /*!< Current state of the task. Can be running or suspended */
BaseType_t xCpuId; /*!< CPU where this task was running */
} TaskSnapshot_t;
/**