Merge pull request #796 from Du-Chao/freertos_log

Improve a debug log in freertos_update_threads()
This commit is contained in:
Tim Newsome 2023-02-15 09:52:36 -08:00 committed by GitHub
commit 9cafc75678
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -590,7 +590,7 @@ static int freertos_update_threads(struct rtos *rtos)
return retval;
}
LOG_DEBUG("FreeRTOS: Read thread count for list %u at 0x%" PRIx64 ", value %" PRIu64,
i, list_of_lists[i], list_thread_count);
i, list_of_lists[i] + freertos->list_uxNumberOfItems_offset, list_thread_count);
if (list_thread_count == 0)
continue;