From 9b38eddadf387d2e614c0cce3e5a4ba107594a92 Mon Sep 17 00:00:00 2001 From: patacongo Date: Tue, 15 Sep 2009 15:44:14 +0000 Subject: [PATCH] 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 --- Documentation/NuttX.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Documentation/NuttX.html b/Documentation/NuttX.html index dd13cb7998..121ba36a5c 100644 --- a/Documentation/NuttX.html +++ b/Documentation/NuttX.html @@ -1529,6 +1529,9 @@ nuttx-0.4.11 2009-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr> 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 pascal-0.1.3 2009-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>