-
Notifications
You must be signed in to change notification settings - Fork 7.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Task name IDLE not same as in the documentation (IDFGH-11021) #12204
Comments
Yeah, seems like this got changed back in a3c90bf during a freertos kernel upgrade. We'll take a look at it! |
Can I second the comment on ‘Tmr Svc” becoming “TmrSvc” or similar.
We use the task name as part of our Syslog support and a space in the name breaks the RFC standard!!
Took the issue up with Richard Barry many years ago, he agreed to resolve but probably forgot….
On 23/09/07, 11:20, "ESP-Marius" ***@***.******@***.***>> wrote:
Yeah, seems like this got changed back in a3c90bf<a3c90bf> during a freertos kernel upgrade.
We'll take a look at it!
—
Reply to this email directly, view it on GitHub<#12204 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AAYT7GDPXAISMJI34NYEMRDXZGGUXANCNFSM6AAAAAA4ORTFNE>.
You are receiving this because you are subscribed to this thread.Message ID: ***@***.***>
|
The fact that the Tmr Svc has a space in the name is only a small problem, but the two "IDLE" tasks have the same name, in my opinion it is a bug. |
FWIW there is xTaskGetIdleTaskHandleForCPU which should allow you to get each of the idle task handles. |
…ID as a suffix This commit updates the IDLE task names for each core by concatenating the respective coreIDs to the names. Closes #12204
…ID as a suffix This commit updates the IDLE task names for each core by concatenating the respective coreIDs to the names. Closes #12204
…coreID as a suffix This commit updates the IDLE task names for each core by concatenating the respective coreIDs to the task names. Closes #12204
…ID as a suffix This commit updates the IDLE task names for each core by concatenating the respective coreIDs to the names. Closes #12204
…coreID as a suffix This commit updates the IDLE task names for each core by concatenating the respective coreIDs to the task names. Closes #12204
…ID as a suffix This commit updates the IDLE task names for each core by concatenating the respective coreIDs to the names. Closes espressif#12204
…coreID as a suffix This commit updates the IDLE task names for each core by concatenating the respective coreIDs to the task names. Closes espressif#12204
…ID as a suffix This commit updates the IDLE task names for each core by concatenating the respective coreIDs to the names. Closes espressif#12204
Answers checklist.
General issue report
Hello everyone,
I found a little difference between the documentation and the actual code.
According to the IDF Programming guide, two IDLEs task with different numbers should be started.
Otherwise, the task information cannot be requested from the operating system. (as you can see on this picture with IDLE)
The task list was queried with this function: vTaskList(taskList)
As we can see, the two IDLE tasks have the same name.
I am using IDF Version 4.4.2
What is also not optimal is that a task has a space Tmr Svc in its name instead of being separated by an underscore Tmr_Scv.
Thank you in advance.
Best regards,
Botond
The text was updated successfully, but these errors were encountered: