summaryrefslogtreecommitdiff
path: root/nuttx/sched/Makefile
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-04-18 16:15:20 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-04-18 16:15:20 -0600
commit2d32b627f6f91e9f70ea20a481adf91dd8d27e99 (patch)
tree6ce126f0017af4d8cf269b433ca7087b655f7d11 /nuttx/sched/Makefile
parent032e040edbb467aa1137f8f7b3b9442579589ae1 (diff)
downloadpx4-nuttx-2d32b627f6f91e9f70ea20a481adf91dd8d27e99.tar.gz
px4-nuttx-2d32b627f6f91e9f70ea20a481adf91dd8d27e99.tar.bz2
px4-nuttx-2d32b627f6f91e9f70ea20a481adf91dd8d27e99.zip
_exit() should not call atexit() or on_exit() functions; Rename task_deletecurrent() to task_exit()
Diffstat (limited to 'nuttx/sched/Makefile')
-rw-r--r--nuttx/sched/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/sched/Makefile b/nuttx/sched/Makefile
index 0ee88bf8e..c711a35fa 100644
--- a/nuttx/sched/Makefile
+++ b/nuttx/sched/Makefile
@@ -43,7 +43,7 @@ MISC_SRCS += sched_garbage.c sched_getfiles.c sched_getsockets.c sched_getstream
TSK_SRCS = prctl.c exit.c getpid.c
TSK_SRCS += task_create.c task_init.c task_setup.c task_activate.c task_start.c
-TSK_SRCS += task_delete.c task_deletecurrent.c task_exithook.c task_recover.c
+TSK_SRCS += task_delete.c task_exit.c task_exithook.c task_recover.c
TSK_SRCS += task_restart.c task_spawn.c task_spawnparms.c
TSK_SRCS += sched_addreadytorun.c sched_removereadytorun.c sched_addprioritized.c
TSK_SRCS += sched_mergepending.c sched_addblocked.c sched_removeblocked.c