How to tell if a task exists

paulgigliotti wrote on Wednesday, March 15, 2017:

I have a number of timer tasks as follows;

xTaskHandle MSG_Timer_xx_Taskhandle[MAX_NUM_MSG_OPEN];

There can be up to 512 timers running. A timer can be killed by internal and external events, at several loctions in the code. I would like to be able to tell if the timer exists, before attempting to kill the timer. In the design, it is possible that two things will try to kill the timer. I would like to check to see if the timer has already been killed, that it no longer exists, before attempting to kill it.

paulgigliotti wrote on Wednesday, March 15, 2017:

Oops, just saw this solution, which was one thing I was thinking about…

http://www.freertos.org/FreeRTOS_Support_Forum_Archive/June_2013/freertos_Monitoring_the_quot_existence_quot_o…_8487303.html