summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-03-17 06:42:09 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-03-17 06:42:09 +0000
commit66a0b1a57b521dfbd3f9b22ad9326f75d5811288 (patch)
tree2a38912c4ec776f064fcd0d2a9322945a841ed17 /cpukit/libnetworking
parent*** empty log message *** (diff)
downloadrtems-66a0b1a57b521dfbd3f9b22ad9326f75d5811288.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')
-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 {