task_onexit.c:Fix style errors.

This commit is contained in:
David Sidrane 2020-03-08 05:51:34 -07:00 committed by patacongo
parent 9b4f238548
commit cdb22ed6af

View File

@ -105,10 +105,10 @@ int on_exit(CODE void (*func)(int, FAR void *), FAR void *arg)
{
sched_lock();
/* Search for the first available slot. on_exit() functions are registered
* from lower to higher array indices; they must be called in the reverse
* order of registration when task exists, i.e., from higher to lower
* indices.
/* Search for the first available slot. on_exit() functions are
* registered from lower to higher array indices; they must be called
* in the reverse order of registration when task exists, i.e.,
* from higher to lower indices.
*/
for (index = 0; index < CONFIG_SCHED_ONEXIT_MAX; index++)