Searched refs:child_req (Results 1 - 5 of 5) sorted by relevance

/netbsd-current/external/mit/libuv/dist/docs/code/detach/
H A Dmain.c6 uv_process_t child_req; variable
23 if ((r = uv_spawn(loop, &child_req, &options))) {
27 fprintf(stderr, "Launched sleep with PID %d\n", child_req.pid);
28 uv_unref((uv_handle_t*) &child_req);
/netbsd-current/external/mit/libuv/dist/docs/code/spawn/
H A Dmain.c7 uv_process_t child_req; variable
28 if ((r = uv_spawn(loop, &child_req, &options))) {
32 fprintf(stderr, "Launched process with ID %d\n", child_req.pid);
/netbsd-current/external/mit/libuv/dist/docs/code/cgi/
H A Dmain.c8 uv_process_t child_req; variable
42 child_req.data = (void*) client;
44 if ((r = uv_spawn(loop, &child_req, &options))) {
/netbsd-current/external/mit/libuv/dist/docs/code/proc-streams/
H A Dmain.c8 uv_process_t child_req; variable
43 if ((r = uv_spawn(loop, &child_req, &options))) {
/netbsd-current/external/mit/libuv/dist/test/
H A Dtest-spawn.c1783 uv_process_t child_req; local
1833 ASSERT(uv_spawn(loop, &child_req, &options) == 0);

Completed in 212 milliseconds