gdbstub: improve format of info thread command output

gdbstub: simplify the state handling on extra thread info
This commit is contained in:
Felipe Neves
2020-04-15 17:24:12 -03:00
committed by bot
parent 9a54a0af13
commit 5279e68146
2 changed files with 20 additions and 32 deletions

View File

@@ -199,7 +199,7 @@ typedef struct xTASK_SNAPSHOT
StackType_t *pxTopOfStack; /*!< Points to the location of the last item placed on the tasks stack. */
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 */
eTaskState eState; /*!< Current state of the task. Can be running or suspended */
} TaskSnapshot_t;
/**