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.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/cpukit/libcsupport/include/sys/termios.h b/cpukit/libcsupport/include/sys/termios.h
index b65f81dc08..f51cd3c0f3 100644
--- a/cpukit/libcsupport/include/sys/termios.h
+++ b/cpukit/libcsupport/include/sys/termios.h
@@ -198,11 +198,21 @@ int tcdrain(int);
*/
int tcflow(int, int);
int tcflush(int, int);
+
+/**
+ * @brief Get State
+ * POSIX 1003.1b 7.2.1 - Get and Set State
+ */
int tcgetattr(int, struct termios *);
int tcsetattr(int, int, struct termios *);
int tcdrain(int);
pid_t tcgetprgrp(int);
int tcsetprgrp(int, pid_t);
+
+/**
+ * @brief Line Control Functions
+ * POSIX 1003.1b 7.2.2 - Line Control Functions
+ */
int tcsendbreak(int, int);
/**