summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/termios.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-06-27 13:08:28 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-06-30 11:18:42 +0200
commitf6b1e0630b80810852887de634c64b2a62961cd7 (patch)
treeccdcc3b852e5d2003b0468a0481b6db601e251d9 /cpukit/libcsupport/src/termios.c
parentrtems: Delete unused <rtems/rtems/atomic.h> (diff)
downloadrtems-f6b1e0630b80810852887de634c64b2a62961cd7.tar.bz2
termios: Make tty list static
Diffstat (limited to 'cpukit/libcsupport/src/termios.c')
-rw-r--r--cpukit/libcsupport/src/termios.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/cpukit/libcsupport/src/termios.c b/cpukit/libcsupport/src/termios.c
index 23c649f013..1159bcaaae 100644
--- a/cpukit/libcsupport/src/termios.c
+++ b/cpukit/libcsupport/src/termios.c
@@ -76,14 +76,15 @@ struct rtems_termios_linesw rtems_termios_linesw[MAXLDISC] =
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;
extern rtems_id rtems_termios_ttyMutex;
static size_t rtems_termios_cbufsize = 256;
static size_t rtems_termios_raw_input_size = 128;
static size_t rtems_termios_raw_output_size = 64;
+static struct rtems_termios_tty *rtems_termios_ttyHead;
+static struct rtems_termios_tty *rtems_termios_ttyTail;
+
static rtems_task rtems_termios_rxdaemon(rtems_task_argument argument);
static rtems_task rtems_termios_txdaemon(rtems_task_argument argument);
/*