aboutsummaryrefslogtreecommitdiff
path: root/nuttx/fs/fs_files.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-08-03 19:11:11 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-08-03 19:11:11 +0000
commit07b635386da6ed220d4f5c2a36f7e869b4e5b2a5 (patch)
treeda55e9fab23eebbf67c222daf2efe23f93daf1ec /nuttx/fs/fs_files.c
parentfe26494ea8673246adda770689a8dea11176a47d (diff)
downloadpx4-firmware-07b635386da6ed220d4f5c2a36f7e869b4e5b2a5.tar.gz
px4-firmware-07b635386da6ed220d4f5c2a36f7e869b4e5b2a5.tar.bz2
px4-firmware-07b635386da6ed220d4f5c2a36f7e869b4e5b2a5.zip
Add capability to traverse inodes in the NuttX psuedo-filesystem
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@5004 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/fs/fs_files.c')
-rw-r--r--nuttx/fs/fs_files.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/nuttx/fs/fs_files.c b/nuttx/fs/fs_files.c
index 9208b323b..3646c51e7 100644
--- a/nuttx/fs/fs_files.c
+++ b/nuttx/fs/fs_files.c
@@ -56,7 +56,7 @@
****************************************************************************/
/****************************************************************************
- * Public Types
+ * Private Types
****************************************************************************/
/****************************************************************************
@@ -182,7 +182,8 @@ FAR struct filelist *files_alloclist(void)
/****************************************************************************
* Name: files_addreflist
*
- * Description: Increase the reference count on a file list
+ * Description:
+ * Increase the reference count on a file list
*
****************************************************************************/
@@ -209,7 +210,8 @@ int files_addreflist(FAR struct filelist *list)
/****************************************************************************
* Name: files_releaselist
*
- * Description: Release a reference to the file list
+ * Description:
+ * Release a reference to the file list
*
****************************************************************************/
@@ -264,7 +266,8 @@ int files_releaselist(FAR struct filelist *list)
* Name: files_dup
*
* Description:
- * Assign an inode to a specific files structure. This is the heart of dup2.
+ * Assign an inode to a specific files structure. This is the heart of
+ * dup2.
*
****************************************************************************/