summaryrefslogtreecommitdiffstats
path: root/cpukit/libblock
diff options
context:
space:
mode:
authorMathew Kallada <matkallada@gmail.com>2012-12-21 11:42:39 -0600
committerJennifer Averett <jennifer.averett@oarcorp.com>2012-12-21 11:42:39 -0600
commitf6c7bcfe996e2a620c902d80c7a29623071edc7a (patch)
tree026fcae09c46b98e75ca5b970a5773c555348768 /cpukit/libblock
parentlibmisc: Doxygen Enhancement Task #1 (diff)
downloadrtems-f6c7bcfe996e2a620c902d80c7a29623071edc7a.tar.bz2
libblock: Doxygen Enhancement Task #1
Diffstat (limited to 'cpukit/libblock')
-rw-r--r--cpukit/libblock/include/rtems/bdpart.h3
-rw-r--r--cpukit/libblock/include/rtems/blkdev.h6
-rw-r--r--cpukit/libblock/src/bdpart-create.c3
-rw-r--r--cpukit/libblock/src/bdpart-dump.c3
-rw-r--r--cpukit/libblock/src/bdpart-mount.c3
-rw-r--r--cpukit/libblock/src/bdpart-read.c3
-rw-r--r--cpukit/libblock/src/bdpart-register.c3
-rw-r--r--cpukit/libblock/src/bdpart-sort.c3
-rw-r--r--cpukit/libblock/src/bdpart-write.c3
-rw-r--r--cpukit/libblock/src/blkdev-blkstats.c7
-rw-r--r--cpukit/libblock/src/blkdev-imfs.c7
-rw-r--r--cpukit/libblock/src/blkdev-ioctl.c3
-rw-r--r--cpukit/libblock/src/blkdev-print-stats.c7
-rw-r--r--cpukit/libblock/src/blkdev.c3
-rw-r--r--cpukit/libblock/src/diskdevs-init.c7
-rw-r--r--cpukit/libblock/src/flashdisk.c9
-rw-r--r--cpukit/libblock/src/ide_part_table.c15
-rw-r--r--cpukit/libblock/src/nvdisk-sram.c10
-rw-r--r--cpukit/libblock/src/nvdisk.c9
-rw-r--r--cpukit/libblock/src/show_bdbuf.c60
20 files changed, 97 insertions, 70 deletions
diff --git a/cpukit/libblock/include/rtems/bdpart.h b/cpukit/libblock/include/rtems/bdpart.h
index d1d81e733b..c45e109ccf 100644
--- a/cpukit/libblock/include/rtems/bdpart.h
+++ b/cpukit/libblock/include/rtems/bdpart.h
@@ -33,6 +33,7 @@ extern "C" {
#endif /* __cplusplus */
/**
+ * @brief Manage Partitions of a Disk Device
* @defgroup rtems_bdpart Block Device Partition Management
*
* @ingroup rtems_libblock
@@ -334,6 +335,8 @@ rtems_status_code rtems_bdpart_unmount(
);
/**
+ * @brief Prints the Partition Table @a Partitions with @a Count Partitions
+ *
* Prints the partition table @a partitions with @a count partitions to
* standard output.
*/
diff --git a/cpukit/libblock/include/rtems/blkdev.h b/cpukit/libblock/include/rtems/blkdev.h
index f29a34987f..e7571ddb39 100644
--- a/cpukit/libblock/include/rtems/blkdev.h
+++ b/cpukit/libblock/include/rtems/blkdev.h
@@ -276,7 +276,7 @@ static inline int rtems_disk_fd_reset_device_stats(int fd)
/** @} */
/**
- * @brief Common IO control primitive.
+ * @brief Common IO Control Primitive
*
* Use this in all block devices to handle the common set of IO control
* requests.
@@ -344,7 +344,7 @@ rtems_status_code rtems_blkdev_create_partition(
);
/**
- * @brief Prints the block device statistics.
+ * @brief Prints the Block Device Statistics
*/
void rtems_blkdev_print_stats(
const rtems_blkdev_stats *stats,
@@ -353,7 +353,7 @@ void rtems_blkdev_print_stats(
);
/**
- * @brief Block device statistics command.
+ * @brief Block Device Statistics Command
*/
void rtems_blkstats(
FILE *output,
diff --git a/cpukit/libblock/src/bdpart-create.c b/cpukit/libblock/src/bdpart-create.c
index 209f78ff31..b220daaa17 100644
--- a/cpukit/libblock/src/bdpart-create.c
+++ b/cpukit/libblock/src/bdpart-create.c
@@ -1,9 +1,8 @@
/**
* @file
*
+ * @brief Manage Partitions of a Disk Device
* @ingroup rtems_bdpart
- *
- * Block device partition management.
*/
/*
diff --git a/cpukit/libblock/src/bdpart-dump.c b/cpukit/libblock/src/bdpart-dump.c
index abd85b6037..ec19166588 100644
--- a/cpukit/libblock/src/bdpart-dump.c
+++ b/cpukit/libblock/src/bdpart-dump.c
@@ -1,9 +1,8 @@
/**
* @file
*
+ * @brief Prints the Partition Table @a Partitions with @a Count Partitions
* @ingroup rtems_bdpart
- *
- * Block device partition management.
*/
/*
diff --git a/cpukit/libblock/src/bdpart-mount.c b/cpukit/libblock/src/bdpart-mount.c
index aef15dfbaa..68e00989b5 100644
--- a/cpukit/libblock/src/bdpart-mount.c
+++ b/cpukit/libblock/src/bdpart-mount.c
@@ -1,9 +1,8 @@
/**
* @file
*
+ * @brief Block Device Partition Management
* @ingroup rtems_bdpart
- *
- * Block device partition management.
*/
/*
diff --git a/cpukit/libblock/src/bdpart-read.c b/cpukit/libblock/src/bdpart-read.c
index b14fc4c057..de60095e84 100644
--- a/cpukit/libblock/src/bdpart-read.c
+++ b/cpukit/libblock/src/bdpart-read.c
@@ -1,9 +1,8 @@
/**
* @file
*
+ * @brief Block Device Partition Management
* @ingroup rtems_bdpart
- *
- * Block device partition management.
*/
/*
diff --git a/cpukit/libblock/src/bdpart-register.c b/cpukit/libblock/src/bdpart-register.c
index c1de2cab67..7be408148c 100644
--- a/cpukit/libblock/src/bdpart-register.c
+++ b/cpukit/libblock/src/bdpart-register.c
@@ -1,9 +1,8 @@
/**
* @file
*
+ * @brief Block Device Partition Management
* @ingroup rtems_bdpart
- *
- * Block device partition management.
*/
/*
diff --git a/cpukit/libblock/src/bdpart-sort.c b/cpukit/libblock/src/bdpart-sort.c
index 1114b7a492..bf7b4f9125 100644
--- a/cpukit/libblock/src/bdpart-sort.c
+++ b/cpukit/libblock/src/bdpart-sort.c
@@ -1,9 +1,8 @@
/**
* @file
*
+ * @brief Block Device Partition Management
* @ingroup rtems_bdpart
- *
- * Block device partition management.
*/
/*
diff --git a/cpukit/libblock/src/bdpart-write.c b/cpukit/libblock/src/bdpart-write.c
index d4523e068e..24f352b044 100644
--- a/cpukit/libblock/src/bdpart-write.c
+++ b/cpukit/libblock/src/bdpart-write.c
@@ -1,9 +1,8 @@
/**
* @file
*
+ * @brief Block Device Partition Management
* @ingroup rtems_bdpart
- *
- * Block device partition management.
*/
/*
diff --git a/cpukit/libblock/src/blkdev-blkstats.c b/cpukit/libblock/src/blkdev-blkstats.c
index c870fe1080..b8f6d48b73 100644
--- a/cpukit/libblock/src/blkdev-blkstats.c
+++ b/cpukit/libblock/src/blkdev-blkstats.c
@@ -1,3 +1,10 @@
+/**
+ * @file
+ *
+ * @brief Block Device Statistics Command
+ * @ingroup rtems_blkdev Block Device Management
+ */
+
/*
* Copyright (c) 2012 embedded brains GmbH. All rights reserved.
*
diff --git a/cpukit/libblock/src/blkdev-imfs.c b/cpukit/libblock/src/blkdev-imfs.c
index 290ae781ef..256f90c539 100644
--- a/cpukit/libblock/src/blkdev-imfs.c
+++ b/cpukit/libblock/src/blkdev-imfs.c
@@ -1,3 +1,10 @@
+/**
+ * @file
+ *
+ * @brief Block Device IMFS
+ * @ingroup libblock
+ */
+
/*
* Copyright (c) 2012 embedded brains GmbH. All rights reserved.
*
diff --git a/cpukit/libblock/src/blkdev-ioctl.c b/cpukit/libblock/src/blkdev-ioctl.c
index 54360b3bec..2267fb0a62 100644
--- a/cpukit/libblock/src/blkdev-ioctl.c
+++ b/cpukit/libblock/src/blkdev-ioctl.c
@@ -1,9 +1,8 @@
/**
* @file
*
+ * @brief Common IO Control Primitive
* @ingroup rtems_blkdev
- *
- * Block device management.
*/
/*
diff --git a/cpukit/libblock/src/blkdev-print-stats.c b/cpukit/libblock/src/blkdev-print-stats.c
index 8cebeaf812..6de1fd6bc8 100644
--- a/cpukit/libblock/src/blkdev-print-stats.c
+++ b/cpukit/libblock/src/blkdev-print-stats.c
@@ -1,3 +1,10 @@
+/**
+ * @file
+ *
+ * @brief Prints the Block Device Statistics
+ * @ingroup rtems_blkdev Block Device Management
+ */
+
/*
* Copyright (c) 2012 embedded brains GmbH. All rights reserved.
*
diff --git a/cpukit/libblock/src/blkdev.c b/cpukit/libblock/src/blkdev.c
index b926f4effb..c946d33e4f 100644
--- a/cpukit/libblock/src/blkdev.c
+++ b/cpukit/libblock/src/blkdev.c
@@ -1,9 +1,8 @@
/**
* @file
*
+ * @brief Block Device Management
* @ingroup rtems_blkdev
- *
- * Block device management.
*/
/*
diff --git a/cpukit/libblock/src/diskdevs-init.c b/cpukit/libblock/src/diskdevs-init.c
index 02ef392a28..d594ff2314 100644
--- a/cpukit/libblock/src/diskdevs-init.c
+++ b/cpukit/libblock/src/diskdevs-init.c
@@ -1,3 +1,10 @@
+/**
+ * @file
+ *
+ * @brief Block Device Disk Management Initialize
+ * @ingroup rtems_disk Block Device Disk Management
+ */
+
/*
* Copyright (c) 2012 embedded brains GmbH. All rights reserved.
*
diff --git a/cpukit/libblock/src/flashdisk.c b/cpukit/libblock/src/flashdisk.c
index a9e56c938f..ccea2e6a34 100644
--- a/cpukit/libblock/src/flashdisk.c
+++ b/cpukit/libblock/src/flashdisk.c
@@ -1,6 +1,11 @@
-/*
- * flashdisk.c -- Flash disk block device implementation
+/**
+ * @file
*
+ * @brief Flash Disk Block Device Implementation
+ * @ingroup libblock
+ */
+
+/*
* Copyright (C) 2007 Chris Johns
*
* The license and distribution terms for this file may be
diff --git a/cpukit/libblock/src/ide_part_table.c b/cpukit/libblock/src/ide_part_table.c
index 482917fb77..55ac875c5c 100644
--- a/cpukit/libblock/src/ide_part_table.c
+++ b/cpukit/libblock/src/ide_part_table.c
@@ -1,10 +1,11 @@
-/*****************************************************************************
- *
- * ide_part_table.c
- *
- * The implementation of library supporting "MS-DOS-style" partition table
- *
+/**
+ * @file
*
+ * @brief Library supporting "MS-DOS-style" Partition Table
+ * @ingroup libblock
+ */
+
+/*
* Copyright (C) 2002 OKTET Ltd., St.-Petersburg, Russia
*
* Author: Konstantin Abramenko <Konstantin.Abramenko@oktet.ru>
@@ -14,7 +15,7 @@
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
*
- *****************************************************************************/
+ */
#if HAVE_CONFIG_H
#include "config.h"
diff --git a/cpukit/libblock/src/nvdisk-sram.c b/cpukit/libblock/src/nvdisk-sram.c
index 61d8180a92..6a64a42fa9 100644
--- a/cpukit/libblock/src/nvdisk-sram.c
+++ b/cpukit/libblock/src/nvdisk-sram.c
@@ -1,11 +1,15 @@
+/**
+ * @file
+ *
+ * @brief Provide SRAM support for the NV Disk
+ * @ingroup libblock
+ */
+
/*
* RTEMS Project (http://www.rtems.org/)
*
* Copyright 2007 Chris Johns (chrisj@rtems.org)
*/
-/**
- * Provide SRAM support for the NV Disk.
- */
#if HAVE_CONFIG_H
#include "config.h"
diff --git a/cpukit/libblock/src/nvdisk.c b/cpukit/libblock/src/nvdisk.c
index 127291df71..db971790b6 100644
--- a/cpukit/libblock/src/nvdisk.c
+++ b/cpukit/libblock/src/nvdisk.c
@@ -1,6 +1,11 @@
-/*
- * nvdisk.c -- Non-volatile disk block device implementation
+/**
+ * @file
*
+ * @brief Non-Volatile Disk Block Device Implementation
+ * @ingroup libblock
+ */
+
+/*
* Copyright (C) 2007 Chris Johns
*
* The license and distribution terms for this file may be
diff --git a/cpukit/libblock/src/show_bdbuf.c b/cpukit/libblock/src/show_bdbuf.c
index 74ff9922aa..9fa5f52e8a 100644
--- a/cpukit/libblock/src/show_bdbuf.c
+++ b/cpukit/libblock/src/show_bdbuf.c
@@ -1,38 +1,28 @@
-/*===============================================================*\
-| Project: RTEMS bdbuf inspector |
-+-----------------------------------------------------------------+
-| File: show_bdbuf.c
-+-----------------------------------------------------------------+
-| Copyright (c) 2005 |
-| Embedded Brains GmbH |
-| Obere Lagerstr. 30 |
-| D-82178 Puchheim |
-| Germany |
-| rtems@embedded-brains.de |
-+-----------------------------------------------------------------+
-| 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. |
-| |
-+-----------------------------------------------------------------+
-| this file contains functions to enable the monitor |
-| to show bdbuf information |
-| |
-| XXX!!! ATTETION!!! XXX!!! |
-| |
-| This module inspects the bdbuf data structures, |
-| assuming they are static, but in fact they are used very |
-| dynamically. Therefore the results show MAY BE INCORRECT in |
-| some cases. And, to cure this a bit, this module may block |
-| preemption for a rather long time and therefore it may |
-| BREAK THE REALTIME BEHAVIOUR OF YOUR SYSTEM (when in use) |
-+-----------------------------------------------------------------+
-| date history ID |
-| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
-| 26.09.06 creation doe |
-|*****************************************************************|
-\*===============================================================*/
+/**
+ * @file
+ *
+ * @brief Enable the Monitor to Show bdbuf Information
+ * @ingroup rtems_bdpart
+ *
+ * This module inspects the bdbuf data structures,
+ * assuming they are static, but in fact they are used very
+ * dynamically. Therefore the results show MAY BE INCORRECT in
+ * some cases. And, to cure this a bit, this module may block
+ * preemption for a rather long time and therefore it may
+ * BREAK THE REALTIME BEHAVIOUR OF YOUR SYSTEM (when in use)
+ */
+
+/*
+ * Copyright (c) 2005
+ * Embedded Brains GmbH
+ * Obere Lagerstr. 30
+ * D-82178 Puchheim
+ * Germany
+ * rtems@embedded-brains.de
+ * 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 HAVE_CONFIG_H
#include "config.h"