summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-03-29 14:21:31 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-03-29 14:21:31 +0000
commite16d9f54360f6c7c3a410c14e0eb881877371ea5 (patch)
tree3e172a5d42f21351ebcf1f5b21bc388ebd665de0 /nuttx/ChangeLog
parentc34b8df9eb4095e6a22260e6677751db319fe33c (diff)
downloadnuttx-e16d9f54360f6c7c3a410c14e0eb881877371ea5.tar.gz
nuttx-e16d9f54360f6c7c3a410c14e0eb881877371ea5.tar.bz2
nuttx-e16d9f54360f6c7c3a410c14e0eb881877371ea5.zip
Moved exclusion logic to a higher level so that printf output is more readable when the same stdout FILE* is shared
by many pthreads (tasks did not have this probablem because they have separate stdout streams). git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@174 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog5
1 files changed, 4 insertions, 1 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 181082fc7..da2341872 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -98,6 +98,9 @@
task_delete() can cause pending tasks to be merged and a
context switch to occur.
* Added mq_timedreceive() and mq_timedsend()
+ * signal mask is now inherited by both child tasks and threads.
+ * Improved sharebility of stdout among pthreads (only). Nothing
+ was broken, but by moving the mutual exclusion logic to a
+ higher level, the printf output is more readable.
* Started m68322
-