summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-07-31 00:28:24 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-07-31 00:28:24 +0000
commitad910059a7501d0f9f7b5f722258cb902c64eb15 (patch)
tree522105d53d29cdc3a37a6b75977830bd7c1faa83 /nuttx/ChangeLog
parentd5b792fdafc619122a2e5cae2e5918cc451ff84a (diff)
downloadnuttx-ad910059a7501d0f9f7b5f722258cb902c64eb15.tar.gz
nuttx-ad910059a7501d0f9f7b5f722258cb902c64eb15.tar.bz2
nuttx-ad910059a7501d0f9f7b5f722258cb902c64eb15.zip
Fix bug: Using unsigned to detect errno<0
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@791 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 da542dfe3..39d4fa603 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -381,4 +381,8 @@
* Removed limitation: task_create() was only dup'ing 3 file descriptors (now
dups all open file descriptors).
* Added a test for redirection of stdio through pipes
+ * Fixed error in dup and dup2: Must call open/close methods in fs/driver so that
+ driver can correctly maintain open reference counts.
+ * Fixed in error in stdio flush logic. Needed ssize_t vs size_t for error
+ check.