Home
last modified time | relevance | path

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

/mOS-networking-stack/samples/lighttpd-1.4.32/src/
H A Dlog.c60 int to_log_fds[2]; in open_logfile_or_pipe() local
62 if (pipe(to_log_fds)) { in open_logfile_or_pipe()
74 if (to_log_fds[0] != STDIN_FILENO) { in open_logfile_or_pipe()
75 if (STDIN_FILENO != dup2(to_log_fds[0], STDIN_FILENO)) { in open_logfile_or_pipe()
80 close(to_log_fds[0]); in open_logfile_or_pipe()
82 close(to_log_fds[1]); in open_logfile_or_pipe()
110 close(to_log_fds[0]); in open_logfile_or_pipe()
111 fd = to_log_fds[1]; in open_logfile_or_pipe()