-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/66455/
-----------------------------------------------------------
Review request for mesos.
Bugs: MESOS-8692
https://issues.apache.org/jira/browse/MESOS-8692
Repository: mesos
Description
-------
This previously used the CRT API `_chsize_s()`, which required a CRT
integer file descriptor. Instead, we can achieve the same behavior by
first using `os::lseek()` (which uses `SetFilePointerEx()`) to seek
`length`, and then use `SetEndOfFile()` to truncate. The only
difference is that the file is not filled with null bytes when
expanded, but we do not seem to rely on this behavior.
Diffs
-----
3rdparty/stout/include/stout/os/windows/ftruncate.hpp fc4a8b5040d56fa9766687e44ce17fbe47d9e8f0
Diff: https://reviews.apache.org/r/66455/diff/1/
Testing
-------
Thanks,
Andrew Schwartzmeyer
|