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.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/cpukit/libcsupport/include/sys/termios.h b/cpukit/libcsupport/include/sys/termios.h
index d763c896e8..8fd46b1cbc 100644
--- a/cpukit/libcsupport/include/sys/termios.h
+++ b/cpukit/libcsupport/include/sys/termios.h
@@ -1,7 +1,9 @@
/**
* @file sys/termios.h
*
- * POSIX termios implementation for RTEMS console device driver.
+ * @brief POSIX termios implementation for RTEMS console device driver.
+ *
+ * http://pubs.opengroup.org/onlinepubs/009604599/basedefs/termios.h.html
*/
/*
@@ -22,6 +24,12 @@
extern "C" {
#endif
+/**
+ * @ingroup Termios
+ *
+ * @brief POSIX Termios Implementation
+ */
+
typedef unsigned char cc_t;
typedef unsigned int speed_t;
typedef unsigned int tcflag_t;
@@ -193,7 +201,6 @@ int tcdrain(int);
pid_t tcgetprgrp(int);
int tcsetprgrp(int, pid_t);
int tcsendbreak(int, int);
-
speed_t cfgetospeed(const struct termios *tp);
int cfsetospeed(struct termios *tp, speed_t speed);
speed_t cfgetispeed(const struct termios *tp);