aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/tty.h
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1995-03-29 19:03:02 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1995-03-29 19:03:02 +0000
commit33eb491fce36f7f2767d06641fd39fd871ca3497 (patch)
tree2e3beb44284540a4c1ab1c7aa23f8868676dceb8 /sys/sys/tty.h
parent532f5941b08c7674db305c56669bcc85426264c6 (diff)
downloadsrc-33eb491fce36f7f2767d06641fd39fd871ca3497.tar.gz
src-33eb491fce36f7f2767d06641fd39fd871ca3497.zip
Add TTY_OE for overrun error and TTY_BI for break condition
Notes
Notes: svn path=/head/; revision=7467
Diffstat (limited to 'sys/sys/tty.h')
-rw-r--r--sys/sys/tty.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/sys/tty.h b/sys/sys/tty.h
index a80bce04841f..1737b3f80df3 100644
--- a/sys/sys/tty.h
+++ b/sys/sys/tty.h
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)tty.h 8.6 (Berkeley) 1/21/94
- * $Id: tty.h,v 1.13 1995/03/16 18:16:33 bde Exp $
+ * $Id: tty.h,v 1.14 1995/03/28 07:57:38 bde Exp $
*/
#ifndef _SYS_TTY_H_
@@ -172,8 +172,10 @@ struct speedtab {
#define TTY_CHARMASK 0x000000ff /* Character mask */
#define TTY_QUOTE 0x00000100 /* Character quoted */
#define TTY_ERRORMASK 0xff000000 /* Error mask */
-#define TTY_FE 0x01000000 /* Framing error or BREAK condition */
+#define TTY_FE 0x01000000 /* Framing error */
#define TTY_PE 0x02000000 /* Parity error */
+#define TTY_OE 0x04000000 /* Overrun error */
+#define TTY_BI 0x08000000 /* Break condition */
/* Is tp controlling terminal for p? */
#define isctty(p, tp) \