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.

Tasks in TM4C129DNCPDT

Hi

In TI-RTOS  , task of SYS/BIOS can I terminate ?? There is no dependecy of any varaibles. It will finish task and moves out .Can I do like that ?I want to know is that a good way

I am doing because I am using 6-7 threads in my application. That's why I am going to terminate.

Regards

Sravan

  • Sravan,

    I'm not sure I understand your question.

    A task will terminate if it simply "falls through the bottom" of the task function. It can also explicitly terminate by calling Task_exit().

    SYS/BIOS does not keep track of any resources the task may have acquired or used during its lifetime. It is the application's responsibility to guarantee the integrity of a task's partnerships prior to exiting.

    Alan