This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software: TI-RTOS
Hello,
I'm using
- CCS Version: 6.1.0.00104,
- TIRTOS: tirtos_tivac_2_16_01_14,
- xdctools_3_32_01_22_core
i have some tasks that had been constructed by task_construct, and i wanted to terminate those tasks so i called Task_exit at the end of the task function, my problem is that the ROV is displaying those tasks even i set the following line in my CFG file
Task.deleteTerminatedTasks = true;
so why the terminated tasks didn't deleted? and what happen if i tried to construct those tasks once again, is it going to use the stack and the task object without any problems?
Thanks,
Mohammed Fawzy
Yes, it's normal for ROV to still display such a task, if the task is constructed (the behavior is different when a task instance is created by calling Task_create). ROV doesn't check if such a task is deleted or not, it just displays the content of the structure that is declared as Task_Structure. In the newer versions of TI-RTOS, ROV could recognize that a structure is not initialized and mark it differently but in the version that you are suing ROV doesn't make that distinction
Thank you for the reply, but for my records, which version of the ROV this feature is supported?