summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-09-15 10:16:20 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-09-15 10:16:20 -0600
commit224d518ce02145005e1b24b4e433ba3af69cd7b1 (patch)
tree742cf9ed733a3caa95296183f16db9fb82882c73
parent295fce88ee7cc6154172c70d57270c2d4cfb7dac (diff)
downloadnuttx-224d518ce02145005e1b24b4e433ba3af69cd7b1.tar.gz
nuttx-224d518ce02145005e1b24b4e433ba3af69cd7b1.tar.bz2
nuttx-224d518ce02145005e1b24b4e433ba3af69cd7b1.zip
execv() is a basic system interface. It should not be in libc/ but rather in sched/task. Its symboltable helper logic also belongs in the kernel but belings in binfmt/ with the other symbol table logic
-rw-r--r--nuttx/sched/task/task_posixspawn.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/nuttx/sched/task/task_posixspawn.c b/nuttx/sched/task/task_posixspawn.c
index a4e30f9fb..65ee785ab 100644
--- a/nuttx/sched/task/task_posixspawn.c
+++ b/nuttx/sched/task/task_posixspawn.c
@@ -45,6 +45,7 @@
#include <nuttx/kthread.h>
#include <nuttx/binfmt/binfmt.h>
+#include <nuttx/binfmt/symtab.h>
#include "sched/sched.h"
#include "group/group.h"