-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/65840/
-----------------------------------------------------------
(Updated March 3, 2018, 1:16 a.m.)
Review request for mesos, Andrew Schwartzmeyer and Joseph Wu.
Changes
-------
fixed typo.
Bugs: MESOS-7342
https://issues.apache.org/jira/browse/MESOS-7342
Repository: mesos
Description
-------
The `WIFEXITED` and `WIFSIGNALED` were incorrectly checking if the
exit code was not -1 to determine if the process exited or was signaled.
However, -1 is a valid return code on Windows, so places in the Mesos
codebase that called `CHECK(WIFEXITED(status)|| WIFSIGNALED(status))`
would end up aborting the agent or executor.
Diffs (updated)
-----
3rdparty/stout/include/stout/windows.hpp
b35e6b94ba6709254450be9429b6f48f2d276689
Diff: https://reviews.apache.org/r/65840/diff/3/
Changes: https://reviews.apache.org/r/65840/diff/2-3/
Testing
-------
Thanks,
Akash Gupta