-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/66957/
-----------------------------------------------------------
(Updated May 22, 2018, 10:51 p.m.)
Review request for mesos, Andrew Schwartzmeyer, Benjamin Mahler, Eric Mumau,
John Kordich, Joseph Wu, and Radhika Jandhyala.
Changes
-------
Ran clang-format and updated with Andy's suggestions.
Bugs: MESOS-8674
https://issues.apache.org/jira/browse/MESOS-8674
Repository: mesos
Description
-------
`os::pipe` was using `CreatePipe`, which does not support overlapped
io. Now, the implementation of `os::pipe` has been changed to use
`CreateNamedPipe`, which supports overlapped IO. The named pipe is
created with an unique random name, so it is effectively anonymous.
Diffs (updated)
-----
3rdparty/stout/include/stout/os/windows/pipe.hpp
a3574fd6f2ff1608396b47cad8cbed88134a74ca
Diff: https://reviews.apache.org/r/66957/diff/2/
Changes: https://reviews.apache.org/r/66957/diff/1-2/
Testing
-------
Thanks,
Akash Gupta