mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-21 01:12:32 +08:00
check in serial.h change that grossman made but forgot to check in
This commit is contained in:
parent
0e57a49587
commit
372d09c3fd
13
gdb/serial.h
13
gdb/serial.h
@ -23,12 +23,13 @@ typedef PTR ttystate;
|
||||
|
||||
struct _serial_t
|
||||
{
|
||||
int fd;
|
||||
struct serial_ops *ops;
|
||||
ttystate ttystate;
|
||||
int bufcnt;
|
||||
unsigned char *bufp;
|
||||
unsigned char buf[BUFSIZ];
|
||||
int fd; /* File descriptor */
|
||||
struct serial_ops *ops; /* Function vector */
|
||||
ttystate ttystate; /* Not used (yet) */
|
||||
int bufcnt; /* Amount of data in receive buffer */
|
||||
unsigned char *bufp; /* Current byte */
|
||||
unsigned char buf[BUFSIZ]; /* Da buffer itself */
|
||||
int current_timeout; /* (termio{s} only), last value of VTIME */
|
||||
};
|
||||
|
||||
typedef struct _serial_t *serial_t;
|
||||
|
Loading…
Reference in New Issue
Block a user