summaryrefslogtreecommitdiff
path: root/gdb/serial.c
diff options
context:
space:
mode:
authorVladimir Prus <vladimir@codesourcery.com>2007-04-08 15:20:07 +0000
committerVladimir Prus <vladimir@codesourcery.com>2007-04-08 15:20:07 +0000
commit2f3f3b34c5e70ea4b0cbea2e6703cfc5542e730b (patch)
treeb53223b419839c69163c9d8a6f8533377d8775c9 /gdb/serial.c
parente2787b9f05b2a5d81ddf9449ff214e0ab12c49bc (diff)
downloadgdb-2f3f3b34c5e70ea4b0cbea2e6703cfc5542e730b.tar.gz
Pass stderr of program run with "target remote |"
via gdb_stderr. * serial.c (serial_open): Set error_fd to -1. * serial.h (struct serial): New field error_fd. (struct serial_opts): New field avail. * ser-pipe.c (pipe_open): Create another pair of sockets. Pass stderr to gdb. * ser-mingw.c (pipe_windows_open): Pass PEX_STDERR_TO_PIPE to pex_run. Initialize sd->error_fd. (pipe_avail): New. (_initialize_ser_windows): Hook pipe_avail. * ser-base.c (generic_readchar): Check if there's anything in stderr channel and route that to gdb_stderr.
Diffstat (limited to 'gdb/serial.c')
-rw-r--r--gdb/serial.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/serial.c b/gdb/serial.c
index de1f891edd4..2025527920e 100644
--- a/gdb/serial.c
+++ b/gdb/serial.c
@@ -211,6 +211,7 @@ serial_open (const char *name)
scb->bufcnt = 0;
scb->bufp = scb->buf;
+ scb->error_fd = -1;
if (scb->ops->open (scb, open_name))
{