Searched refs:child_req (Results 1 – 5 of 5) sorted by relevance
/libuv/docs/code/detach/ |
H A D | main.c | 6 uv_process_t child_req; variable 23 if ((r = uv_spawn(loop, &child_req, &options))) { in main() 27 fprintf(stderr, "Launched sleep with PID %d\n", child_req.pid); in main() 28 uv_unref((uv_handle_t*) &child_req); in main()
|
/libuv/docs/code/spawn/ |
H A D | main.c | 7 uv_process_t child_req; variable 28 if ((r = uv_spawn(loop, &child_req, &options))) { in main() 32 fprintf(stderr, "Launched process with ID %d\n", child_req.pid); in main()
|
/libuv/docs/code/cgi/ |
H A D | main.c | 8 uv_process_t child_req; variable 42 child_req.data = (void*) client; in invoke_cgi_script() 44 if ((r = uv_spawn(loop, &child_req, &options))) { in invoke_cgi_script()
|
/libuv/docs/code/proc-streams/ |
H A D | main.c | 8 uv_process_t child_req; variable 43 if ((r = uv_spawn(loop, &child_req, &options))) { in main()
|
/libuv/test/ |
H A D | test-spawn.c | 1881 uv_process_t child_req; in TEST_IMPL() local 1931 ASSERT_OK(uv_spawn(loop, &child_req, &options)); in TEST_IMPL()
|
Completed in 10 milliseconds