summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/include/sys/termios.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport/include/sys/termios.h')
-rw-r--r--cpukit/libcsupport/include/sys/termios.h16
1 files changed, 10 insertions, 6 deletions
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