aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2000-02-08 13:42:05 +0000
committerAndreas Jaeger <aj@suse.de>2000-02-08 13:42:05 +0000
commitaf6eca30703ea72847a15a9da0b8520bb99cd464 (patch)
treec6b6e49d80c846b2d942d062f17bfd8dc8bb519f
parent046219c750012530a5e08eddec3d7b3e2ea1e066 (diff)
downloadglibc-af6eca30703ea72847a15a9da0b8520bb99cd464.tar
glibc-af6eca30703ea72847a15a9da0b8520bb99cd464.tar.gz
glibc-af6eca30703ea72847a15a9da0b8520bb99cd464.tar.bz2
glibc-af6eca30703ea72847a15a9da0b8520bb99cd464.zip
Update.
* sysdeps/unix/sysv/linux/mips/bits/termios.h: Remove members c_ispeed and c_ospeed which are not implemented.
-rw-r--r--ChangeLog3
-rw-r--r--sysdeps/unix/sysv/linux/mips/bits/termios.h4
2 files changed, 4 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index e0db31e892..cdcf6011f1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2000-02-08 Andreas Jaeger <aj@suse.de>
+ * sysdeps/unix/sysv/linux/mips/bits/termios.h: Remove members
+ c_ispeed and c_ospeed which are not implemented.
+
* sysdeps/unix/sysv/linux/mips/pwrite64.c: Define __libc_* variant
for cancelation wrapper; use __ASSUME_PWRITE_SYSCALL macro.
* sysdeps/unix/sysv/linux/mips/pread64.c: Likewise.
diff --git a/sysdeps/unix/sysv/linux/mips/bits/termios.h b/sysdeps/unix/sysv/linux/mips/bits/termios.h
index e43c03b54b..f7abe474df 100644
--- a/sysdeps/unix/sysv/linux/mips/bits/termios.h
+++ b/sysdeps/unix/sysv/linux/mips/bits/termios.h
@@ -68,8 +68,6 @@ struct termios
tcflag_t c_lflag; /* local mode flags */
cc_t c_line; /* line discipline */
cc_t c_cc[NCCS]; /* control characters */
- speed_t c_ispeed; /* input speed */
- speed_t c_ospeed; /* output speed */
};
/* c_cc characters */
@@ -93,7 +91,7 @@ struct termios
* VDSUSP is not supported
*/
#if defined __USE_BSD
-#define VDSUSP 11 /* Delayed suspend character [ISIG]. */
+# define VDSUSP 11 /* Delayed suspend character [ISIG]. */
#endif
#endif
#ifdef __USE_BSD