From 17a4d27ec4d4afe6a2b2c7cd468c3171c90f3db2 Mon Sep 17 00:00:00 2001 From: David Schleef Date: Fri, 13 Jul 2001 03:22:18 +0000 Subject: PowerPC has a different kernel interface for termios. Grrr... --- libc/termios/kernel_termios.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'libc/termios') diff --git a/libc/termios/kernel_termios.h b/libc/termios/kernel_termios.h index 09504cc97..e8969eb76 100644 --- a/libc/termios/kernel_termios.h +++ b/libc/termios/kernel_termios.h @@ -18,6 +18,8 @@ #ifndef _KERNEL_TERMIOS_H #define _KERNEL_TERMIOS_H 1 + +#ifndef __powerpc__ /* The following corresponds to the values from the Linux 2.1.20 kernel. */ #define __KERNEL_NCCS 19 @@ -32,4 +34,24 @@ struct __kernel_termios cc_t c_cc[__KERNEL_NCCS]; /* control characters */ }; +#else /* powerpc */ + +#define _HAVE_C_ISPEED +#define _HAVE_C_OSPEED + +#define __KERNEL_NCCS 19 +struct __kernel_termios + { + tcflag_t c_iflag; /* input mode flags */ + tcflag_t c_oflag; /* output mode flags */ + tcflag_t c_cflag; /* control mode flags */ + tcflag_t c_lflag; /* local mode flags */ + cc_t c_cc[__KERNEL_NCCS]; /* control characters */ + cc_t c_line; /* line discipline */ + speed_t c_ispeed; /* input speed */ + speed_t c_ospeed; /* output speed */ + }; + +#endif + #endif /* kernel_termios.h */ -- cgit v1.2.3