summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-04-25 16:23:30 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-04-25 16:23:30 -0600
commitfd1e0a17e27b59cc236394c0766feea7278e1d00 (patch)
tree94a82f0c869cd5c5c81c41c00d707f63208c52e5 /nuttx/ChangeLog
parentbbf5ee648636273bf194f5e9a8004ea45d4cb009 (diff)
downloadnuttx-fd1e0a17e27b59cc236394c0766feea7278e1d00.tar.gz
nuttx-fd1e0a17e27b59cc236394c0766feea7278e1d00.tar.bz2
nuttx-fd1e0a17e27b59cc236394c0766feea7278e1d00.zip
Move task_terminate to its own C file to prevent drawing task_delete into the link
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog3
1 files changed, 3 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index e6cbea97d..4467e4088 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -4632,3 +4632,6 @@
compilation so that the useless TIOCSERGSTRUCT ioctl logic
is not build unless CONFIG_DEBUG and CONFIG_SERIAL_TIOCSERGSTRUCT
are defined.
+ * sched/task_delete.c and task_terminate.c: Most task_terminate()
+ out of task_delete.c into its own C file. This should prevent
+ dragging task_delete() into the link when it is never called.