[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[commits] r9017 - in /fsf/trunk/libc: ChangeLog bits/termios.h



Author: eglibc
Date: Mon Sep 28 00:03:10 2009
New Revision: 9017

Log:
Import glibc-mainline for 2009-09-28

Modified:
    fsf/trunk/libc/ChangeLog
    fsf/trunk/libc/bits/termios.h

Modified: fsf/trunk/libc/ChangeLog
==============================================================================
--- fsf/trunk/libc/ChangeLog (original)
+++ fsf/trunk/libc/ChangeLog Mon Sep 28 00:03:10 2009
@@ -1,3 +1,7 @@
+2009-09-28  Samuel Thibault  <samuel.thibault@xxxxxxxxxxxx>
+
+	* bits/termios.h [__USE_UNIX98] (IXANY): Define macro.
+
 2009-09-20  Andreas Schwab  <schwab@xxxxxxxxxxxxxx>
 
 	* iconvdata/iso646.c (gconv_init): Correctly initialize the

Modified: fsf/trunk/libc/bits/termios.h
==============================================================================
--- fsf/trunk/libc/bits/termios.h (original)
+++ fsf/trunk/libc/bits/termios.h Mon Sep 28 00:03:10 2009
@@ -124,8 +124,10 @@
 #define	ICRNL	(1 << 8)	/* Map CR to NL on input.  */
 #define	IXON	(1 << 9)	/* Enable start/stop output control.  */
 #define	IXOFF	(1 << 10)	/* Enable start/stop input control.  */
-#ifdef	__USE_BSD
+#if defined __USE_BSD || defined __USE_UNIX98
 # define IXANY	(1 << 11)	/* Any character will restart after stop.  */
+#endif
+#ifdef	__USE_BSD
 # define IMAXBEL (1 << 13)	/* Ring bell when input queue is full.  */
 #endif
 #ifdef __USE_GNU