summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-14 15:42:03 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-14 15:42:03 +0000
commitf3c15e2b0508635898c2c0fcf1564394d8aa8cfc (patch)
treebc136f7b1fa5989900d1b0e856571e51d96998dc /nuttx/ChangeLog
parent0191f2d9e4a4c9857ee37655dd3da523cf74a48a (diff)
downloadnuttx-f3c15e2b0508635898c2c0fcf1564394d8aa8cfc.tar.gz
nuttx-f3c15e2b0508635898c2c0fcf1564394d8aa8cfc.tar.bz2
nuttx-f3c15e2b0508635898c2c0fcf1564394d8aa8cfc.zip
Add support for dup2'ing files. Infrastructure and ROMFS done. Still need FAT, BINFS, NXFFS, and NFS
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5516 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog11
1 files changed, 11 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index e8d4f7309..cb0244e20 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -3929,3 +3929,14 @@
need to.
* sched/sched_waitid.c and sched_wait.c: Add support for waitid()
and wait(). See issues with waitpid() above.
+ * include/nuttx/fs/fs.h and fs/fs_files.c: Add a dup() method to
+ the struct mountpt_operations. When dup'ing a file that resides
+ on a mounted volume, let the file system's dup() method do the
+ work.
+ * fs/romfs/fs_romfs.c: Implemented the dup() method for the ROMFS
+ file system.
+ * fs/fat/fs_fat32.c, fs/nxffs/nxffs_initialize, and
+ fs/nfs/nfs_vfsops.c: Add hooks for dup() method (not yet
+ implemented).
+ * fs/romfs: Remove the rf_open flag. It looks good, but actually
+ does nothing.