summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs
diff options
context:
space:
mode:
authorMathew Kallada <matkallada@gmail.com>2012-12-28 10:35:32 -0600
committerJennifer Averett <jennifer.averett@oarcorp.com>2012-12-28 10:36:55 -0600
commit9ab091e1e4b5572c0d327722dfbfd9d1bbccd405 (patch)
tree934bc6440fc4dbf775a00181952433bdfeed0d9d /cpukit/libfs
parentlibmisc/mouse: Doxygen Group Clean Up (diff)
downloadrtems-9ab091e1e4b5572c0d327722dfbfd9d1bbccd405.tar.bz2
Header File Doxygen Enhancement Task #2
Diffstat (limited to 'cpukit/libfs')
-rw-r--r--cpukit/libfs/src/pipe/pipe.h14
-rw-r--r--cpukit/libfs/src/rfs/rtems-rfs-format.h17
2 files changed, 17 insertions, 14 deletions
diff --git a/cpukit/libfs/src/pipe/pipe.h b/cpukit/libfs/src/pipe/pipe.h
index 6ba3c5ef42..158cde5e35 100644
--- a/cpukit/libfs/src/pipe/pipe.h
+++ b/cpukit/libfs/src/pipe/pipe.h
@@ -1,6 +1,8 @@
/**
* @file rtems/pipe.h
*
+ * @brief Defines the Interface to the POSIX FIFO/pipe File System Support
+ *
* This include file defines the interface to the POSIX FIFO/pipe file system
* support.
*/
@@ -24,7 +26,7 @@ extern "C" {
/**
* @defgroup FIFO_PIPE FIFO/pipe File System Support
- *
+ *
* @brief Interface to the POSIX FIFO/pipe File System
*/
@@ -50,7 +52,7 @@ typedef struct pipe_control {
/**
* @brief Create an Anonymous Pipe
- *
+ *
* Called by pipe() to create an anonymous pipe.
*/
extern int pipe_create(
@@ -59,7 +61,7 @@ extern int pipe_create(
/**
* @brief Release a Pipe
- *
+ *
* Interface to file system close.
*
* *pipep points to pipe control structure. When the last user releases pipe,
@@ -85,7 +87,7 @@ extern int fifo_open(
/**
* @brief Pipe Read
- *
+ *
* Interface to file system read.
*/
extern ssize_t pipe_read(
@@ -97,7 +99,7 @@ extern ssize_t pipe_read(
/**
* @brief Pipe Write
- *
+ *
* Interface to file system write.
*/
extern ssize_t pipe_write(
@@ -109,7 +111,7 @@ extern ssize_t pipe_write(
/**
* @brief Pipe IO Control
- *
+ *
* Interface to file system ioctl.
*/
extern int pipe_ioctl(
diff --git a/cpukit/libfs/src/rfs/rtems-rfs-format.h b/cpukit/libfs/src/rfs/rtems-rfs-format.h
index b9774264f7..56b1aa9d82 100644
--- a/cpukit/libfs/src/rfs/rtems-rfs-format.h
+++ b/cpukit/libfs/src/rfs/rtems-rfs-format.h
@@ -1,20 +1,21 @@
-/*
- * COPYRIGHT (c) 2010 Chris Johns <chrisj@rtems.org>
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
- */
/**
* @file
*
* @ingroup rtems-rfs
*
- * RTEMS File System Format.
+ * @brief RTEMS File System Format
*
* This function lets you format a disk in the RFS format.
*/
+/*
+ * COPYRIGHT (c) 2010 Chris Johns <chrisj@rtems.org>
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ */
+
#if !defined (_RTEMS_RFS_FORMAT_H_)
#define _RTEMS_RFS_FORMAT_H_