Searched refs:startup_pipe (Results 1 – 3 of 3) sorted by relevance
237 int startup_pipe; /* in child */ variable991 startup_pipe = -1;996 startup_pipe = dup(REEXEC_STARTUP_PIPE_FD);1225 startup_pipe = -1;1251 startup_pipe = startup_p[1];1842 sock_in, sock_out, newsock, startup_pipe, config_s[0]);1845 if (startup_pipe == -1)1848 dup2(startup_pipe, REEXEC_STARTUP_PIPE_FD);1852 if (startup_pipe != -1)1853 close(startup_pipe);[all …]
138 extern int startup_pipe;
1395 if options.startup_pipe is not None:1401 fd = msvcrt.open_osfhandle(options.startup_pipe, 0)1403 fd = options.startup_pipe1404 startup_pipe = os.fdopen(fd, "w")1408 startup_pipe.write(struct.pack('=L', server_data_len))1409 startup_pipe.write(server_data_json)1410 startup_pipe.close()