summaryrefslogtreecommitdiffstats
path: root/cpukit
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
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')
-rw-r--r--cpukit/ChangeLog5
-rw-r--r--cpukit/libnetworking/sys/conf.h23
2 files changed, 5 insertions, 23 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 60cff42ae2..9e0ba32aa8 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,8 @@
+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).
+
2007-03-13 Ralf Corsépius <ralf.corsepius@rtems.org>
* libcsupport/src/assocnamebad.c: Remove dead code. Use PRI* macros
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 {