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).
This commit is contained in:
Ralf Corsepius
2007-03-17 06:42:09 +00:00
parent acdf664ec7
commit 66a0b1a57b
2 changed files with 5 additions and 23 deletions

View File

@@ -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> 2007-03-13 Ralf Corsépius <ralf.corsepius@rtems.org>
* libcsupport/src/assocnamebad.c: Remove dead code. Use PRI* macros * libcsupport/src/assocnamebad.c: Remove dead code. Use PRI* macros

View File

@@ -122,29 +122,6 @@ struct cdevsw {
extern struct cdevsw *cdevsw[]; extern struct cdevsw *cdevsw[];
#endif #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 * Swap device table
*/ */