Searched defs:s_fHave_O_CLOEXEC (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Runtime/r3/posix/
H A Dfileio-posix.cpp140 static int s_fHave_O_CLOEXEC = 0; /* {-1,0,1}; since Linux 2.6.23 */ local
141 if (!(fOpen & RTFILE_O_INHERIT) && s_fHave_O_CLOEXEC >= 0)
210 && s_fHave_O_CLOEXEC == 0)
214 s_fHave_O_CLOEXEC = -1;
219 s_fHave_O_CLOEXEC = fcntl(fh, F_GETFD, 0) > 0 ? 1 : -1;
236 && s_fHave_O_CLOEXEC <= 0

Completed in 43 milliseconds