summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/include/sys
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport/include/sys')
-rw-r--r--cpukit/libcsupport/include/sys/statvfs.h6
-rw-r--r--cpukit/libcsupport/include/sys/termios.h16
-rw-r--r--cpukit/libcsupport/include/sys/utsname.h15
3 files changed, 23 insertions, 14 deletions
diff --git a/cpukit/libcsupport/include/sys/statvfs.h b/cpukit/libcsupport/include/sys/statvfs.h
index 8872670d80..eccc7d2881 100644
--- a/cpukit/libcsupport/include/sys/statvfs.h
+++ b/cpukit/libcsupport/include/sys/statvfs.h
@@ -1,12 +1,12 @@
/**
- * @file sys/statvfs.h
+ * @file
*
- * @brief Interface to the statvfs() set of API Methods
+ * @brief Interface to the statvfs() Set of API Methods
*
* This include file defines the interface to the statvfs() set of
* API methods. The statvfs as defined by the SUS:
*
- * - http://www.opengroup.org/onlinepubs/009695399/basedefs/sys/statvfs.h.html
+ * - http://www.opengroup.org/onlinepubs/009695399/basedefs/sys/statvfs.h.html
*/
/*
diff --git a/cpukit/libcsupport/include/sys/termios.h b/cpukit/libcsupport/include/sys/termios.h
index cc8440891a..5b96814af1 100644
--- a/cpukit/libcsupport/include/sys/termios.h
+++ b/cpukit/libcsupport/include/sys/termios.h
@@ -1,7 +1,7 @@
/**
- * @file sys/termios.h
+ * @file
*
- * @brief POSIX termios Implementation for RTEMS Console Device Driver
+ * @brief POSIX Termios Implementation for RTEMS Console Device Driver
*
* The Open Group Base Specifications Issue 6
* IEEE Std 1003.1, 2004 Edition
@@ -27,9 +27,11 @@ extern "C" {
#endif
/**
- * @ingroup Termios
+ * @ingroup Termios
*
- * @brief POSIX Termios Implementation
+ * @brief POSIX Termios Implementation
+ *
+ * @{
*/
typedef unsigned char cc_t;
@@ -47,8 +49,8 @@ struct termios {
};
/**
- * This value is used to disable processing of a member of c_cc
- * in the struct termios.
+ * This value is used to disable processing of a member of c_cc
+ * in the struct termios.
*/
#define _POSIX_VDISABLE 0
@@ -208,6 +210,8 @@ int cfsetospeed(struct termios *tp, speed_t speed);
speed_t cfgetispeed(const struct termios *tp);
int cfsetispeed(struct termios *tp, speed_t speed);
+/** @} */
+
#ifdef __cplusplus
}
#endif
diff --git a/cpukit/libcsupport/include/sys/utsname.h b/cpukit/libcsupport/include/sys/utsname.h
index df3cc675ad..93d331637e 100644
--- a/cpukit/libcsupport/include/sys/utsname.h
+++ b/cpukit/libcsupport/include/sys/utsname.h
@@ -1,5 +1,5 @@
/**
- * @file sys/utsname.h
+ * @file
*
* @brief Interface to the POSIX utsname() Service
*
@@ -19,9 +19,10 @@
#define __POSIX_SYS_UTSNAME_h
/**
- * @defgroup utsname Service
+ * @defgroup utsname Service
+ *
+ * @{
*/
-/**@{*/
#ifdef __cplusplus
extern "C" {
@@ -55,15 +56,19 @@ struct utsname {
};
/**
- * @brief 4.4.1 Get System Name, P1003.1b-1993, p. 90
+ * @brief Get system name.
+ *
+ * 4.4.1 Get System Name, P1003.1b-1993, p. 90
*/
int uname(
struct utsname *name
);
+/** @} */
+
#ifdef __cplusplus
}
#endif
-/**@}*/
+
#endif
/* end of include file */