aboutsummaryrefslogtreecommitdiff
path: root/butl/process.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2016-10-21 20:02:35 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2016-10-24 11:27:19 +0300
commita128eb0961ccf820ff2142897795b48723d842bd (patch)
tree291351ef0ed9f428b3f5c8a1bf22483d3350bc15 /butl/process.cxx
parent070d99ca6d714e8789e67e2e797a1bf16ba35528 (diff)
Make process status optional
Diffstat (limited to 'butl/process.cxx')
-rw-r--r--butl/process.cxx35
1 files changed, 19 insertions, 16 deletions
diff --git a/butl/process.cxx b/butl/process.cxx
index 64366ba..3af42cf 100644
--- a/butl/process.cxx
+++ b/butl/process.cxx
@@ -385,25 +385,23 @@ namespace butl
{
if (handle != 0)
{
- int r (waitpid (handle, &status, 0));
+ status_type es;
+ int r (waitpid (handle, &es, 0));
handle = 0; // We have tried.
if (r == -1)
{
+ // If ignore errors then just leave status nullopt, so it has the same
+ // semantics as for abnormally terminated process.
+ //
if (!ie)
throw process_error (errno, false);
- else
- // Fold into status, so this and subsequent wait() calls return
- // false. There is no portable way to update the status bits
- // representing a process exit code specifically. So we set all bits
- // to 1 and recon on getting non-zero exit status wherever the exact
- // bits are.
- //
- status = ~0;
}
+ else if (WIFEXITED (es))
+ status = WEXITSTATUS (es);
}
- return WIFEXITED (status) && WEXITSTATUS (status) == 0;
+ return status && *status == 0;
}
bool process::
@@ -411,7 +409,8 @@ namespace butl
{
if (handle != 0)
{
- int r (waitpid (handle, &status, WNOHANG));
+ status_type es;
+ int r (waitpid (handle, &es, WNOHANG));
if (r == 0) // Not exited yet.
return false;
@@ -420,9 +419,12 @@ namespace butl
if (r == -1)
throw process_error (errno, false);
+
+ if (WIFEXITED (es))
+ status = WEXITSTATUS (es);
}
- s = WIFEXITED (status) && WEXITSTATUS (status) == 0;
+ s = status && *status == 0;
return true;
}
@@ -890,14 +892,15 @@ namespace butl
status = s;
else
{
+ // If ignore errors then just leave status nullopt, so it has the same
+ // semantics as for abnormally terminated process.
+ //
if (!ie)
throw process_error (error_msg (e));
- else
- status = 1; // Fold into status.
}
}
- return status == 0;
+ return status && *status == 0;
}
bool process::
@@ -923,7 +926,7 @@ namespace butl
status = s;
}
- s = status == 0;
+ s = status && *status == 0;
return true;
}