summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-09-15 15:44:14 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-09-15 15:44:14 +0000
commite2af7aac95b860422eb445bc6e85e18eff118819 (patch)
tree4466048286266204110cf0a20931493391ef0f93 /nuttx/ChangeLog
parenta3f9769a1e25b60594eb5563779c53d602f25ddd (diff)
downloadnuttx-e2af7aac95b860422eb445bc6e85e18eff118819.tar.gz
nuttx-e2af7aac95b860422eb445bc6e85e18eff118819.tar.bz2
nuttx-e2af7aac95b860422eb445bc6e85e18eff118819.zip
Use lldbg() instead of dbg() in interrupt level logic
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2054 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog4
1 files changed, 4 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 9ebb96cce..90ed1ba08 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -868,3 +868,7 @@
removing the check should improve write throughput
* Add DEBUG configuration option to enable debug console output without disabling
optimization (and vice versa)
+ * Changed lots of occurrents of debug macro dbg() to lldbg(). dbg() uses
+ stdout to output debug data. That works fine unless (1) the dbg() macro
+ is interrupt logic and the interrupted task has redirected stdout! Most
+ changes were in uIP.