2001-08-16 Mike Siers <mikes@poliac.com>

* include/rtems/termiostypes.h, include/sys/ioccom.h:
	Update of PPPD to 2.3.11 from 2.3.5 touched these files.
This commit is contained in:
Joel Sherrill
2001-08-16 20:45:26 +00:00
parent 2f1b9304ac
commit f7691e3b7b
7 changed files with 53 additions and 0 deletions

View File

@@ -21,6 +21,14 @@
extern "C" {
#endif
/*
* Wakeup callback data structure
*/
struct ttywakeup {
void (*sw_pfn)__P((struct termios *tty, void *arg));
void *sw_arg;
};
/*
* Variables associated with the character buffer
*/
@@ -111,6 +119,12 @@ struct rtems_termios_tty {
*/
int t_line; /* id of line discipline */
void *t_sc; /* hook for discipline-specific data structure */
/*
* Wakeup callback variables
*/
struct ttywakeup tty_snd;
struct ttywakeup tty_rcv;
int tty_rcvwakeup;
};
struct linesw {

View File

@@ -69,6 +69,8 @@
#define RTEMS_IO_GET_ATTRIBUTES 1
#define RTEMS_IO_SET_ATTRIBUTES 2
#define RTEMS_IO_TCDRAIN 3
#define RTEMS_IO_RCVWAKEUP 4
#define RTEMS_IO_SNDWAKEUP 5
/* copied from libnetworking/sys/filio.h and commented out there */
/* Generic file-descriptor ioctl's. */

View File

@@ -1,3 +1,8 @@
2001-08-16 Mike Siers <mikes@poliac.com>
* include/rtems/termiostypes.h, include/sys/ioccom.h:
Update of PPPD to 2.3.11 from 2.3.5 touched these files.
2001-08-16 Mike Siers <mikes@poliac.com>
* libc/termios.c: Fix a bug in the termios implementation in

View File

@@ -21,6 +21,14 @@
extern "C" {
#endif
/*
* Wakeup callback data structure
*/
struct ttywakeup {
void (*sw_pfn)__P((struct termios *tty, void *arg));
void *sw_arg;
};
/*
* Variables associated with the character buffer
*/
@@ -111,6 +119,12 @@ struct rtems_termios_tty {
*/
int t_line; /* id of line discipline */
void *t_sc; /* hook for discipline-specific data structure */
/*
* Wakeup callback variables
*/
struct ttywakeup tty_snd;
struct ttywakeup tty_rcv;
int tty_rcvwakeup;
};
struct linesw {

View File

@@ -69,6 +69,8 @@
#define RTEMS_IO_GET_ATTRIBUTES 1
#define RTEMS_IO_SET_ATTRIBUTES 2
#define RTEMS_IO_TCDRAIN 3
#define RTEMS_IO_RCVWAKEUP 4
#define RTEMS_IO_SNDWAKEUP 5
/* copied from libnetworking/sys/filio.h and commented out there */
/* Generic file-descriptor ioctl's. */