Skip to content
Snippets Groups Projects
Commit e7bf0e03 authored by David Sidrane's avatar David Sidrane
Browse files

px4_nuttx_tasks:Support future removal of env.

   CONFIG_DISABLE_ENVIRON can prevent task having to allocate
   memory for the env.
parent 88d0b163
No related branches found
No related tags found
No related merge requests found
......@@ -71,14 +71,14 @@ int px4_task_spawn_cmd(const char *name, int scheduler, int priority, int stack_
int pid;
sched_lock();
#if !defined(CONFIG_DISABLE_ENVIRON)
/* None of the modules access the environment variables (via getenv() for instance), so delete them
* all. They are only used within the startup script, and NuttX automatically exports them to the children
* tasks.
* This frees up a considerable amount of RAM.
*/
clearenv();
#endif
/* create the task */
pid = task_create(name, priority, stack_size, entry, argv);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment