summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-09-01 15:41:01 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-09-01 15:41:01 -0600
commit70c0377bc747ffc073499254816d419f88113d6e (patch)
treedcd7a9383d9b889b03c05313666866f0b119fc70
parent22cdf157c01d76420b790bdbb1d900a41346d53e (diff)
downloadnuttx-70c0377bc747ffc073499254816d419f88113d6e.tar.gz
nuttx-70c0377bc747ffc073499254816d419f88113d6e.tar.bz2
nuttx-70c0377bc747ffc073499254816d419f88113d6e.zip
Update ChangeLog
-rwxr-xr-xnuttx/ChangeLog9
1 files changed, 8 insertions, 1 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index c0a05a685..b15be9be5 100755
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -8351,4 +8351,11 @@
* Removed all support from the 8051 from the NuttX source tree. The
obsoleted code along with the removal patch can now be found at
misc/Obsoleted/ (2014-9-1).
-
+ * sched/sched/sched_releasetcb.c and task_setup.c, include/nuttx/arch.h
+ and sched.h, and arch/*/*/*/Make.defs: There used to be two ways to
+ pass parameters to new tasks, depending upon the configuration: Either
+ (1) argv[] as created as an array with each string strdup'ed. Or (1)
+ argv[] array and strings were created on the stack before the new tas
+ was started. Now, there is only one way, way (1). Way (2) might be
+ slightly more compact, but this is not worth carry the complexity of
+ two different ways of doing the same thing (2014-9-1).