mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/sysview_trace_taskid' into 'master'
freertos: fix task ID sent to the trace See merge request idf/esp-idf!3807
This commit is contained in:
commit
98884b4f6c
@ -2951,7 +2951,7 @@ TickType_t xTimeToWake;
|
||||
/* Add the task to the suspended task list instead of a delayed task
|
||||
list to ensure the task is not woken by a timing event. It will
|
||||
block indefinitely. */
|
||||
traceMOVED_TASK_TO_SUSPENDED_LIST(pxCurrentTCB);
|
||||
traceMOVED_TASK_TO_SUSPENDED_LIST(pxCurrentTCB[ xPortGetCoreID() ]);
|
||||
vListInsertEnd( &xSuspendedTaskList, &( pxCurrentTCB[ xPortGetCoreID() ]->xGenericListItem ) );
|
||||
}
|
||||
else
|
||||
@ -4651,7 +4651,7 @@ TickType_t uxReturn;
|
||||
of a delayed task list to ensure the task is not
|
||||
woken by a timing event. It will block
|
||||
indefinitely. */
|
||||
traceMOVED_TASK_TO_SUSPENDED_LIST(pxCurrentTCB);
|
||||
traceMOVED_TASK_TO_SUSPENDED_LIST(pxCurrentTCB[ xPortGetCoreID() ]);
|
||||
vListInsertEnd( &xSuspendedTaskList, &( pxCurrentTCB[ xPortGetCoreID() ]->xGenericListItem ) );
|
||||
}
|
||||
else
|
||||
@ -4767,7 +4767,7 @@ TickType_t uxReturn;
|
||||
of a delayed task list to ensure the task is not
|
||||
woken by a timing event. It will block
|
||||
indefinitely. */
|
||||
traceMOVED_TASK_TO_SUSPENDED_LIST(pxCurrentTCB);
|
||||
traceMOVED_TASK_TO_SUSPENDED_LIST(pxCurrentTCB[ xPortGetCoreID() ]);
|
||||
vListInsertEnd( &xSuspendedTaskList, &( pxCurrentTCB[ xPortGetCoreID() ]->xGenericListItem ) );
|
||||
}
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user