From dae0fd31fab4bb3a32ffecf7b56c101e98d4d343 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 19 May 2017 11:57:45 +0200 Subject: Instrument MSYS2 workaround code for further analysis --- libbutl/process.hxx | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'libbutl/process.hxx') diff --git a/libbutl/process.hxx b/libbutl/process.hxx index 1f82af0..11b320c 100644 --- a/libbutl/process.hxx +++ b/libbutl/process.hxx @@ -175,6 +175,12 @@ namespace butl // std::string description () const; + + // @@ TMP + // +#ifdef _WIN32 + optional msys_; +#endif }; class LIBBUTL_EXPORT process @@ -380,6 +386,10 @@ namespace butl auto_fd out_fd; // Write to it to send to stdin. auto_fd in_ofd; // Read from it to receive from stdout. auto_fd in_efd; // Read from it to receive from stderr. + +#ifdef _WIN32 + optional msys_; +#endif }; // Higher-level process running interface that aims to make executing a -- cgit v1.1