aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 89b683f..3599015 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 &);