Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/pinfo.h')
-rw-r--r--winsup/cygwin/pinfo.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/winsup/cygwin/pinfo.h b/winsup/cygwin/pinfo.h
index 89b683f94..3599015cc 100644
--- a/winsup/cygwin/pinfo.h
+++ b/winsup/cygwin/pinfo.h
@@ -29,11 +29,13 @@ struct commune_result
{
char *s;
int n;
+ HANDLE handles[2];
};
enum picom
{
- PICOM_CMDLINE = 1
+ PICOM_CMDLINE = 1,
+ PICOM_FIFO = 2
};
class _pinfo
@@ -136,7 +138,7 @@ public:
inline void setthread2signal (void *thr) {thread2signal = (pthread *) thr;}
void commune_recv ();
- commune_result commune_send (DWORD);
+ commune_result commune_send (DWORD, ...);
bool alive ();
char *cmdline (size_t &);