From 30ceeaa30c254f47aba02a100ea0c9c3e8b97592 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Sat, 17 Mar 2007 06:46:45 +0000 Subject: =?UTF-8?q?2007-03-17=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * libcsupport/include/rtems/termiostypes.h, libcsupport/src/termios.c: Prefix linesw, struct linesw, nwlinesw with rtems_termios_*. --- cpukit/libcsupport/include/rtems/termiostypes.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpukit/libcsupport/include/rtems/termiostypes.h') diff --git a/cpukit/libcsupport/include/rtems/termiostypes.h b/cpukit/libcsupport/include/rtems/termiostypes.h index 67233895d4..c17aa12c64 100644 --- a/cpukit/libcsupport/include/rtems/termiostypes.h +++ b/cpukit/libcsupport/include/rtems/termiostypes.h @@ -131,7 +131,7 @@ struct rtems_termios_tty { int tty_rcvwakeup; }; -struct linesw { +struct rtems_termios_linesw { int (*l_open) (struct rtems_termios_tty *tp); int (*l_close)(struct rtems_termios_tty *tp); int (*l_read )(struct rtems_termios_tty *tp,rtems_libio_rw_args_t *args); @@ -165,8 +165,8 @@ void rtems_termios_puts (const void *buf, /* * global hooks for line disciplines */ -extern struct linesw linesw[]; -extern int nlinesw; +extern struct rtems_termios_linesw rtems_termios_linesw[]; +extern int rtems_termios_nlinesw; #define TTYDISC 0 /* termios tty line discipline */ #define TABLDISC 3 /* tablet discipline */ -- cgit v1.2.3