Home
last modified time | relevance | path

Searched refs:stdout_flags (Results 1 – 2 of 2) sorted by relevance

/netbsd/src/external/public-domain/xz/dist/src/xz/
Dfile_io.c82 static int stdout_flags; variable
834 stdout_flags = fcntl(STDOUT_FILENO, F_GETFL); in io_open_dest_real()
835 if (stdout_flags == -1) { in io_open_dest_real()
842 if ((stdout_flags & O_NONBLOCK) == 0 in io_open_dest_real()
844 stdout_flags | O_NONBLOCK) != -1) in io_open_dest_real()
931 if (stdout_flags & O_APPEND) { in io_open_dest_real()
952 int flags = stdout_flags & ~O_APPEND; in io_open_dest_real()
1013 if (fcntl(STDOUT_FILENO, F_SETFL, stdout_flags) == -1) { in io_close_dest()
/netbsd/src/external/public-domain/xz/dist/
DChangeLog3142 relying on a special value in stdout_flags.