summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy <jimb@codesourcery.com>2006-03-17 20:36:14 +0000
committerJim Blandy <jimb@codesourcery.com>2006-03-17 20:36:14 +0000
commita392a73b6ba4dfb0d03f15136b6a529dff69bae2 (patch)
tree10664cf99bd5da305abe433ea05b4efc1f01ab2d
parentf1c677b2ec9234513b058ac1412692748d5bb40e (diff)
downloadcygnal-a392a73b6ba4dfb0d03f15136b6a529dff69bae2.tar.gz
cygnal-a392a73b6ba4dfb0d03f15136b6a529dff69bae2.tar.bz2
cygnal-a392a73b6ba4dfb0d03f15136b6a529dff69bae2.zip
gdb/ChangeLog:
2006-03-17 Jim Blandy <jimb@codesourcery.com> Add support for 'target remote |' on MinGW. * ser-mingw.c (struct pipe_state): New structure. (make_pipe_state, free_pipe_state, cleanup_pipe_state) (pipe_windows_open, pipe_windows_close, pipe_windows_read) (pipe_windows_write, pipe_wait_handle): New functions. (_initialize_ser_windows): Register a "pipe" interface based on them. include/ChangeLog: 2006-03-15 Jim Blandy <jimb@codesourcery.com> * libiberty.h (pex_write_input): New declaration. libiberty/ChangeLog: 2006-03-15 Jim Blandy <jimb@codesourcery.com> * pex-common.c (pex_write_input): New function. * pexecute.txh (pex_write_input): Document it. * pex-common.h (struct pex_funcs): New function ptr fdopenw. * pex-unix.c (pex_unix_fdopenw): New function. (funcs): List it as our fdopenw function. * pex-win32.c (pex_win32_fdopenw): New function. (funcs): List it as our fdopenw function. * pex-djgpp.c (funcs): Leave fdopenw null. * pex-msdos (funcs): Same. * functions.texi: Regenerated. 2006-03-12 Jim Blandy <jimb@red-bean.com> * pex-common.h (struct pex_obj): Doc fixes. 2006-03-11 Jim Blandy <jimb@red-bean.com> * functions.texi: Regenerate.
-rw-r--r--include/ChangeLog4
-rw-r--r--include/libiberty.h27
2 files changed, 31 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index 3c6907f56..f0bc4b37b 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,7 @@
+2006-03-15 Jim Blandy <jimb@codesourcery.com>
+
+ * libiberty.h (pex_write_input): New declaration.
+
2006-02-17 Shrirang Khisti <shrirangk@kpitcummins.com>
Anil Paranjape <anilp1@kpitcummins.com>
Shilin Shakti <shilins@kpitcummins.com>
diff --git a/include/libiberty.h b/include/libiberty.h
index c264cb2ab..6fdc6e9d0 100644
--- a/include/libiberty.h
+++ b/include/libiberty.h
@@ -448,6 +448,33 @@ extern const char *pex_run (struct pex_obj *obj, int flags,
const char *outname, const char *errname,
int *err);
+/* Return a `FILE' pointer FP for the standard input of the first
+ program in the pipeline; FP is opened for writing. You must have
+ passed `PEX_USE_PIPES' to the `pex_init' call that returned OBJ.
+ You must close FP yourself with `fclose' to indicate that the
+ pipeline's input is complete.
+
+ The file descriptor underlying FP is marked not to be inherited by
+ child processes.
+
+ This call is not supported on systems which do not support pipes;
+ it returns with an error. (We could implement it by writing a
+ temporary file, but then you would need to write all your data and
+ close FP before your first call to `pex_run' -- and that wouldn't
+ work on systems that do support pipes: the pipe would fill up, and
+ you would block. So there isn't any easy way to conceal the
+ differences between the two types of systems.)
+
+ If you call both `pex_write_input' and `pex_read_output', be
+ careful to avoid deadlock. If the output pipe fills up, so that
+ each program in the pipeline is waiting for the next to read more
+ data, and you fill the input pipe by writing more data to FP, then
+ there is no way to make progress: the only process that could read
+ data from the output pipe is you, but you are blocked on the input
+ pipe. */
+
+extern FILE *pex_write_input (struct pex_obj *obj, int binary);
+
/* Read the standard output of the last program to be executed.
pex_run can not be called after this. BINARY should be non-zero if
the file should be opened in binary mode; this is ignored on Unix.