----------------------------------------------------------- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/52544/ -----------------------------------------------------------
Review request for mesos, Joseph Wu and Michael Park. Repository: mesos Description ------- On POSIX the `socket`,`pipe` and the `filedescriptor` are represented by an int type. In Windows a socket is kept in a `SOCKET` type (64 bit wide), a pipe in a `HANDLE` (64 bit wide) and a file descriptor in an int. Ths class unifies all Windows types. In POSIX this class defaults to int (can be easily extended). Diffs ----- 3rdparty/stout/include/stout/os.hpp c38e434d90c8c25570118c255f2eec72f96b348d 3rdparty/stout/include/stout/os/filedescriptor.hpp PRE-CREATION 3rdparty/stout/include/stout/posix/os.hpp c37e64db662ba3cee83d2f55de0f9d71ad72c038 3rdparty/stout/include/stout/windows/os.hpp 7d6530e37e389a314185e5aaa85d8096a28b9c41 Diff: https://reviews.apache.org/r/52544/diff/ Testing ------- Thanks, Daniel Pravat
