Lines Matching defs:options
33 static uv_process_options_t options;
113 options.file = exepath;
114 options.args = args;
115 options.exit_cb = exit_cb;
119 options.stdio = stdio;
120 options.stdio_count = 2;
121 options.stdio[0].flags = UV_IGNORE;
122 options.stdio[1].flags = UV_CREATE_PIPE | UV_WRITABLE_PIPE;
123 options.stdio[1].data.stream = (uv_stream_t*)&out;
125 r = uv_spawn(loop, &process, &options);