summaryrefslogtreecommitdiff
path: root/nuttx/sched/task_vfork.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-26 23:49:02 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-26 23:49:02 +0000
commit46d5183722a1aac256357f1a054575c6d5ab9a9f (patch)
tree59eb55cb25bbd20b052a87de5838d80a410a1439 /nuttx/sched/task_vfork.c
parent75f185244fbd0892fdb26443eda666ce21c417ec (diff)
downloadpx4-nuttx-46d5183722a1aac256357f1a054575c6d5ab9a9f.tar.gz
px4-nuttx-46d5183722a1aac256357f1a054575c6d5ab9a9f.tar.bz2
px4-nuttx-46d5183722a1aac256357f1a054575c6d5ab9a9f.zip
Move socket data from TCB to task group structure.
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5570 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/sched/task_vfork.c')
-rw-r--r--nuttx/sched/task_vfork.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/sched/task_vfork.c b/nuttx/sched/task_vfork.c
index 3f058bdec..5b42a1e55 100644
--- a/nuttx/sched/task_vfork.c
+++ b/nuttx/sched/task_vfork.c
@@ -125,7 +125,7 @@ FAR _TCB *task_vforksetup(start_t retaddr)
/* Associate file descriptors with the new task */
#if CONFIG_NFILE_DESCRIPTORS > 0 || CONFIG_NSOCKET_DESCRIPTORS > 0
- ret = sched_setuptaskfiles(child);
+ ret = group_setuptaskfiles(child);
if (ret != OK)
{
goto errout_with_tcb;