summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGedare Bloom <gedare@rtems.org>2012-12-13 08:06:31 -0500
committerGedare Bloom <gedare@rtems.org>2012-12-13 08:06:31 -0500
commit8f005260a965d1e420a4b7dac5a8b1ec9ab37610 (patch)
treefd213100e0aa755de95bf7210685c6815c264e35
parentdosfs: Add sync_device option for msdos_format() (diff)
downloadrtems-8f005260a965d1e420a4b7dac5a8b1ec9ab37610.tar.bz2
libcsupport: Revert termios Doxygen. Add file header.
-rw-r--r--cpukit/libcsupport/include/sys/termios.h35
1 files changed, 3 insertions, 32 deletions
diff --git a/cpukit/libcsupport/include/sys/termios.h b/cpukit/libcsupport/include/sys/termios.h
index dea74c4fe8..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
*/
/*
@@ -190,49 +192,18 @@ struct termios {
#define TCSADRAIN 1
#define TCSAFLUSH 2
-/**
- * @brief Line Control Functions
- * POSIX 1003.1b 7.2.2 - Line Control Functions
- */
int tcdrain(int);
-
-/**
- * @brief Line Control Functions
- * POSIX 1003.1b 7.2.2 - Line Control Functions
- */
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);
-
-/**
- * @brief Baud Rate Functions
- */
speed_t cfgetospeed(const struct termios *tp);
-
-/**
- * @brief Baud Rate Functions
- */
int cfsetospeed(struct termios *tp, speed_t speed);
speed_t cfgetispeed(const struct termios *tp);
-
-/**
- * @brief Baud Rate Functions
- */
int cfsetispeed(struct termios *tp, speed_t speed);
#ifdef __cplusplus