summaryrefslogtreecommitdiff
path: root/nuttx/sched/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-26 21:01:19 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-26 21:01:19 +0000
commit801ce1b6a68a593f0aef2d059d9279b0d0824e54 (patch)
tree2c5a08e4daba522a5bcc3bc41537bd8e3361da5c /nuttx/sched/Makefile
parent8300858eb811cc92011e98a5d89390df420e665e (diff)
downloadpx4-nuttx-801ce1b6a68a593f0aef2d059d9279b0d0824e54.tar.gz
px4-nuttx-801ce1b6a68a593f0aef2d059d9279b0d0824e54.tar.bz2
px4-nuttx-801ce1b6a68a593f0aef2d059d9279b0d0824e54.zip
Fix a recently introduced memory leak
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5568 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/sched/Makefile')
-rw-r--r--nuttx/sched/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/nuttx/sched/Makefile b/nuttx/sched/Makefile
index d059152e0..c8fe7cf69 100644
--- a/nuttx/sched/Makefile
+++ b/nuttx/sched/Makefile
@@ -41,7 +41,7 @@ AOBJS = $(ASRCS:.S=$(OBJEXT))
MISC_SRCS = os_start.c os_bringup.c errno_getptr.c errno_get.c errno_set.c
MISC_SRCS += sched_garbage.c sched_setupstreams.c sched_getfiles.c sched_getsockets.c
MISC_SRCS += sched_getstreams.c sched_setupidlefiles.c sched_setuptaskfiles.c
-MISC_SRCS += sched_setuppthreadfiles.c sched_releasefiles.c
+MISC_SRCS += sched_setuppthreadfiles.c
TSK_SRCS = prctl.c task_create.c task_init.c task_setup.c task_activate.c
TSK_SRCS += task_start.c task_delete.c task_deletecurrent.c task_exithook.c
@@ -81,6 +81,7 @@ endif
endif
GRP_SRCS = group_create.c group_join.c group_leave.c group_find.c
+GRP_SRCS += group_releasefiles.c
ifeq ($(CONFIG_SCHED_HAVE_PARENT),y)
GRP_SRCS += task_reparent.c