am 6ccfabcf: Merge "O_CLOEXEC is O_NOINHERIT on Windows."

* commit '6ccfabcf5d547a04a1e6c5237f20670230a7f6a4':
  O_CLOEXEC is O_NOINHERIT on Windows.
This commit is contained in:
Dan Albert 2015-03-27 06:34:45 +00:00 committed by Android Git Automerger
commit a596623fbf

View file

@ -36,7 +36,7 @@ static inline ssize_t pread64(int fd, void* buf, size_t nbytes, off64_t offset)
#endif /* __APPLE__ */
#if defined(_WIN32)
#define O_CLOEXEC 0
#define O_CLOEXEC O_NOINHERIT
#define O_NOFOLLOW 0
#define DEFFILEMODE 0666
#endif /* _WIN32 */