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 ++-- cpukit/libcsupport/src/termios.c | 42 ++++++++++++------------- 2 files changed, 24 insertions(+), 24 deletions(-) (limited to 'cpukit/libcsupport') 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 */ diff --git a/cpukit/libcsupport/src/termios.c b/cpukit/libcsupport/src/termios.c index af981c4501..732964ffb5 100644 --- a/cpukit/libcsupport/src/termios.c +++ b/cpukit/libcsupport/src/termios.c @@ -60,9 +60,9 @@ { NULL, NULL, NULL, NULL, \ NULL, NULL, NULL, NULL } /* - * FIXME: change linesw entries consistant with linesw entry usage... + * FIXME: change rtems_termios_linesw entries consistant with rtems_termios_linesw entry usage... */ -struct linesw linesw[MAXLDISC] = +struct rtems_termios_linesw rtems_termios_linesw[MAXLDISC] = { NODISC(0), /* 0- termios-built-in */ NODISC(1), /* 1- defunct */ @@ -74,7 +74,7 @@ struct linesw linesw[MAXLDISC] = NODISC(7), /* loadable */ }; -int nlinesw = sizeof (linesw) / sizeof (linesw[0]); +int rtems_termios_nlinesw = sizeof (rtems_termios_linesw) / sizeof (rtems_termios_linesw[0]); extern struct rtems_termios_tty *rtems_termios_ttyHead; extern struct rtems_termios_tty *rtems_termios_ttyTail; @@ -364,11 +364,11 @@ rtems_termios_close (void *arg) if (sc != RTEMS_SUCCESSFUL) rtems_fatal_error_occurred (sc); if (--tty->refcount == 0) { - if (linesw[tty->t_line].l_close != NULL) { + if (rtems_termios_linesw[tty->t_line].l_close != NULL) { /* * call discipline-specific close */ - sc = linesw[tty->t_line].l_close(tty); + sc = rtems_termios_linesw[tty->t_line].l_close(tty); } else { /* @@ -525,8 +525,8 @@ rtems_termios_ioctl (void *arg) } switch (args->command) { default: - if (linesw[tty->t_line].l_ioctl != NULL) { - sc = linesw[tty->t_line].l_ioctl(tty,args); + if (rtems_termios_linesw[tty->t_line].l_ioctl != NULL) { + sc = rtems_termios_linesw[tty->t_line].l_ioctl(tty,args); } else { sc = RTEMS_INVALID_NUMBER; @@ -596,16 +596,16 @@ rtems_termios_ioctl (void *arg) /* * close old line discipline */ - if (linesw[tty->t_line].l_close != NULL) { - sc = linesw[tty->t_line].l_close(tty); + if (rtems_termios_linesw[tty->t_line].l_close != NULL) { + sc = rtems_termios_linesw[tty->t_line].l_close(tty); } tty->t_line=*(int*)(args->buffer); tty->t_sc = NULL; /* ensure that no more valid data */ /* * open new line discipline */ - if (linesw[tty->t_line].l_open != NULL) { - sc = linesw[tty->t_line].l_open(tty); + if (rtems_termios_linesw[tty->t_line].l_open != NULL) { + sc = rtems_termios_linesw[tty->t_line].l_open(tty); } break; case TIOCGETD: @@ -755,8 +755,8 @@ rtems_termios_write (void *arg) sc = rtems_semaphore_obtain (tty->osem, RTEMS_WAIT, RTEMS_NO_TIMEOUT); if (sc != RTEMS_SUCCESSFUL) return sc; - if (linesw[tty->t_line].l_write != NULL) { - sc = linesw[tty->t_line].l_write(tty,args); + if (rtems_termios_linesw[tty->t_line].l_write != NULL) { + sc = rtems_termios_linesw[tty->t_line].l_write(tty,args); rtems_semaphore_release (tty->osem); return sc; } @@ -1090,8 +1090,8 @@ rtems_termios_read (void *arg) sc = rtems_semaphore_obtain (tty->isem, RTEMS_WAIT, RTEMS_NO_TIMEOUT); if (sc != RTEMS_SUCCESSFUL) return sc; - if (linesw[tty->t_line].l_read != NULL) { - sc = linesw[tty->t_line].l_read(tty,args); + if (rtems_termios_linesw[tty->t_line].l_read != NULL) { + sc = rtems_termios_linesw[tty->t_line].l_read(tty,args); tty->tty_rcvwakeup = 0; rtems_semaphore_release (tty->isem); return sc; @@ -1146,10 +1146,10 @@ rtems_termios_enqueue_raw_characters (void *ttyp, char *buf, int len) boolean flow_rcv = FALSE; /* TRUE, if flow control char received */ rtems_interrupt_level level; - if (linesw[tty->t_line].l_rint != NULL) { + if (rtems_termios_linesw[tty->t_line].l_rint != NULL) { while (len--) { c = *buf++; - linesw[tty->t_line].l_rint(c,tty); + rtems_termios_linesw[tty->t_line].l_rint(c,tty); } /* @@ -1416,8 +1416,8 @@ rtems_termios_dequeue_characters (void *ttyp, int len) /* * call any line discipline start function */ - if (linesw[tty->t_line].l_start != NULL) { - linesw[tty->t_line].l_start(tty); + if (rtems_termios_linesw[tty->t_line].l_start != NULL) { + rtems_termios_linesw[tty->t_line].l_start(tty); } return 0; /* nothing to output in IRQ... */ } @@ -1451,8 +1451,8 @@ static rtems_task rtems_termios_txdaemon(rtems_task_argument argument) /* * call any line discipline start function */ - if (linesw[tty->t_line].l_start != NULL) { - linesw[tty->t_line].l_start(tty); + if (rtems_termios_linesw[tty->t_line].l_start != NULL) { + rtems_termios_linesw[tty->t_line].l_start(tty); } /* * try to push further characters to device -- cgit v1.2.3