summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-03-11 22:19:01 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-03-11 22:19:01 +0000
commitdc5ec457e96f2c2e874f0626e0d8399ce136a4b3 (patch)
tree13a9ee8ef6cfb9e62ad01f65d34e3d82d274db51 /nuttx/ChangeLog
parent7e354ad57b4d040ab88e2eeb4ac84240e65e0e52 (diff)
downloadnuttx-dc5ec457e96f2c2e874f0626e0d8399ce136a4b3.tar.gz
nuttx-dc5ec457e96f2c2e874f0626e0d8399ce136a4b3.tar.bz2
nuttx-dc5ec457e96f2c2e874f0626e0d8399ce136a4b3.zip
Divided _task_init() in several smaller functions that take fewer paramters. This was necessary to reduce the stack usage for the 8051/2 which has a tiny, 256 byte stack
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@58 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 36b6e689b..9678148ca 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -13,6 +13,10 @@
use of semaphore can cause deadlock.
* Tasks can now accept a configurable maximum number of
input parameters (argc)
+ * _task_init() was divided into separate functions that
+ require fewer parameters. This was necessary to keep
+ the stack usage down for the 8051/2 (which has only
+ 256 bytes of stack).
* Attempts to use C5471 console from interrupt handlers
can casue errors. Added a special path for this case.
* Refuse calls to sem_wait and sem_trywait from interrupt
@@ -20,4 +24,5 @@
were calling printf-like functions.
* Added strtok() and strtok_r()
* Added a simple shell called nsh (see examples/nsh).
+ * Many changes as part of 8052 bringup
* Documentation updates