summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-03-05 18:57:51 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-03-05 18:57:51 +0000
commit7b06c73d1d766cd3376be29dccbd28a16e3f385b (patch)
tree20b00664065816849ca8f29e46281759085270ba /nuttx/ChangeLog
parenteb573ac290c8f1a6bcb0816c8552ca88278cda11 (diff)
downloadnuttx-7b06c73d1d766cd3376be29dccbd28a16e3f385b.tar.gz
nuttx-7b06c73d1d766cd3376be29dccbd28a16e3f385b.tar.bz2
nuttx-7b06c73d1d766cd3376be29dccbd28a16e3f385b.zip
Move work queue logic from sched/ to libc/wqueue. It is not core logic and will be extended to support user-space work queues
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5711 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog8
1 files changed, 7 insertions, 1 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index f345af811..abfdcf6da 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -4246,8 +4246,14 @@
file (2013-03-04).
* configs/open1788: Enable LED support in all configurations.
(2013-03-04)
+ * configs/open1788/nsh: NSH configuration verified function. By Rommel
+ Marcelo (2013-03-05).
* configs/open1788/src/lpc17_nsh.c: Use the SD card interface, not SPI
- to interface with SD cards.
+ to interface with SD cards (2013-03-05.
* arch/arm/src/lpc17xx/lpc17_sdcard.c and header files: Clone the STM32
SD card interface to the LPC1788. It appears to be the same IP.
+ (2013-03-05)
+ * libc/wqueue: Work queue logic moved from sched/ to libc/wqueue. It
+ is not really core OS functionality and this move helps prepare for
+ user-space work queues.