summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-03-10 19:31:10 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-03-10 19:31:10 +0000
commitf6fffbd5b0a83bd161e8f6417a4d034f72268217 (patch)
tree740704dda0a94e8f63547b1f23da5d8f1e91f6f5 /nuttx/ChangeLog
parent8e0c015c2120bf7d76a0c41d1160a745c3565a50 (diff)
downloadnuttx-f6fffbd5b0a83bd161e8f6417a4d034f72268217.tar.gz
nuttx-f6fffbd5b0a83bd161e8f6417a4d034f72268217.tar.bz2
nuttx-f6fffbd5b0a83bd161e8f6417a4d034f72268217.zip
AT91SAM3 now supports kernel-mode heap; SAM3U-EK knsh configuration converted to use kconfig-frontends tool
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5726 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog9
1 files changed, 8 insertions, 1 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 830203fbe..07414609d 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -4274,7 +4274,7 @@
the socket was not closed, but lost the connection through an abnormal
event, then poll/select will hang. That needs to be revisited.
(2013-03-07)
- * fs/fs_selected.c: Was not checking if the timeout parameter was NULL
+ * fs/fs_select.c: Was not checking if the timeout parameter was NULL
but would, instead, setup a bogus timeout based on whatever it found at
address zero. Also, improved some of the memory allocation logic so
that it will not use so much memory. (2013-03-07)
@@ -4295,4 +4295,11 @@
a good test and helped me a lot when I wrote the memory manager, but
now it is in the way and paralyzing other efforts. So the memory unit
test was deleted. (2013-03-08)
+ * sched/sched_free.c: Rename sched_free() to sched_ufree(); Add
+ sched_kfree() to handler deferred kernel heap allocations. (2013-03-10)
+ * arch/: User user-accessible heap to allocate all stacks. (2013-03-10)
+ * arch/arm/src/sam3u: The AT91SAM3U will now support a kernel heap if
+ so configured. (2013-03-10)
+ * configs/sam3u-ek/knsh: This configuration was converted to use the
+ kconfigs-frontends build tool. (2013-03-10)