diff options
author | David Schleef <ds@schleef.org> | 2001-07-13 03:22:18 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2001-07-13 03:22:18 +0000 |
commit | 17a4d27ec4d4afe6a2b2c7cd468c3171c90f3db2 (patch) | |
tree | b1d73728b7f512f998352fe98a1a8376ea010c3e /libc/termios/kernel_termios.h | |
parent | e0130ea5d5117f6ce0edb634b3b1e121021db300 (diff) |
PowerPC has a different kernel interface for termios. Grrr...
Diffstat (limited to 'libc/termios/kernel_termios.h')
-rw-r--r-- | libc/termios/kernel_termios.h | 22 |
1 files changed, 22 insertions, 0 deletions
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 */ |