Home | History | Annotate | Download | only in gdbsupport

Lines Matching defs:O_CLOEXEC

46 #ifndef O_CLOEXEC
47 #define O_CLOEXEC 0
252 O_CLOEXEC. When positive it means that O_CLOEXEC works on this
253 host. When negative, it means that O_CLOEXEC doesn't work. We
255 against a libc that supplies O_CLOEXEC, there is no guarantee that
314 scoped_fd fd (open (filename, flags | O_CLOEXEC, mode));
332 unknown modes. Assume that if O_CLOEXEC is zero, then "e" isn't
333 supported. On MinGW, O_CLOEXEC is an alias of O_NOINHERIT, and
336 O_CLOEXEC == 0 || O_CLOEXEC == O_NOINHERIT;
409 result = pipe2 (filedes, O_CLOEXEC);