summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/include/rtems/deviceio.h
diff options
context:
space:
mode:
authorMathew Kallada <matkallada@gmail.com>2012-12-08 15:43:29 -0500
committerGedare Bloom <gedare@rtems.org>2012-12-08 15:43:29 -0500
commitceaa99964fee5138ebec4b09b80fdf13c3407cfa (patch)
treece1b9891c9061e6378acdc9e85d025d0afb895a6 /cpukit/libcsupport/include/rtems/deviceio.h
parentmisc rtems: Clean up Doxygen GCI Task #8 (diff)
downloadrtems-ceaa99964fee5138ebec4b09b80fdf13c3407cfa.tar.bz2
libcsupport: Doxygen Enhancement Task #3
http://www.google-melange.com/gci/task/view/google/gci2012/7992210
Diffstat (limited to 'cpukit/libcsupport/include/rtems/deviceio.h')
-rw-r--r--cpukit/libcsupport/include/rtems/deviceio.h21
1 files changed, 20 insertions, 1 deletions
diff --git a/cpukit/libcsupport/include/rtems/deviceio.h b/cpukit/libcsupport/include/rtems/deviceio.h
index d1d37fdfd1..637eef4f6c 100644
--- a/cpukit/libcsupport/include/rtems/deviceio.h
+++ b/cpukit/libcsupport/include/rtems/deviceio.h
@@ -1,3 +1,7 @@
+/**
+ * @file rtems/deviceio.h
+ */
+
/*
* COPYRIGHT (c) 1989-2012.
* On-Line Applications Research Corporation (OAR).
@@ -10,12 +14,25 @@
#ifndef _RTEMS_DEVICEIO_H
#define _RTEMS_DEVICEIO_H
+/**
+ * @defgroup Device IO Handler
+ */
+/**@{*/
+
#include <rtems/libio.h>
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
+/**
+ * @brief IMFS Device Node Handlers
+ *
+ * IMFS Device Node Handlers
+ *
+ * This file contains the set of handlers used to map operations on
+ * IMFS device nodes onto calls to the RTEMS Classic API IO Manager.
+ */
int rtems_deviceio_errno( rtems_status_code status );
int rtems_deviceio_open(
@@ -59,6 +76,8 @@ int rtems_deviceio_control(
#ifdef __cplusplus
}
-#endif /* __cplusplus */
+#endif
+/**@}*/
+/* __cplusplus */
#endif /* _RTEMS_DEVICEIO_H */