summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking/sys
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-03-17 06:41:11 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-03-17 06:41:11 +0000
commitd7c655d57559436fe38b7a2021ca0cfe59b30c32 (patch)
tree98d9e7bffb05217a82200afac62fb2a3326041a7 /cpukit/libnetworking/sys
parentUpgrade to gcc-4.1.2. Remove rtprio.h from newlib. (diff)
downloadrtems-d7c655d57559436fe38b7a2021ca0cfe59b30c32.tar.bz2
2007-03-17 Ralf Corsépius <ralf.corsepius@rtems.org>
* libnetworking/sys/conf.h: Remove linesw, struct linesw, nlinesw. (Clash with termiostypes.h - PR 1229).
Diffstat (limited to 'cpukit/libnetworking/sys')
-rw-r--r--cpukit/libnetworking/sys/conf.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/cpukit/libnetworking/sys/conf.h b/cpukit/libnetworking/sys/conf.h
index 207acfe33d..5a9cacde1e 100644
--- a/cpukit/libnetworking/sys/conf.h
+++ b/cpukit/libnetworking/sys/conf.h
@@ -123,29 +123,6 @@ extern struct cdevsw *cdevsw[];
#endif
/*
- * Line discipline switch table
- */
-struct linesw {
- l_open_t *l_open;
- l_close_t *l_close;
- l_read_t *l_read;
- l_write_t *l_write;
- l_ioctl_t *l_ioctl;
- l_rint_t *l_rint;
- l_start_t *l_start;
- l_modem_t *l_modem;
-};
-
-#ifdef _KERNEL
-extern struct linesw linesw[];
-extern int nlinesw;
-
-int ldisc_register __P((int , struct linesw *));
-void ldisc_deregister __P((int));
-#define LDISC_LOAD -1 /* Loadable line discipline */
-#endif
-
-/*
* Swap device table
*/
struct swdevt {