evgeny-erlihman wrote on Thursday, February 08, 2018:
Hello,
I am working on an app that uses static allocations for all it’s tasks. I have a task that needs to run from time to time, not frequntly. My question is, what would be more efficient, create it at startup and keep it in suspended mode. Or create/destroy it every time i need it to run (using the same statically allocated memory). If it is in suspended mode, would it introduce more latency in the scheduler (assuming i have several similiar tasks), or is it neglectable?
Thanks,
Evgeny