MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / uv__process_init

Function uv__process_init

third-party/libuv-1.46.0/src/unix/process.c:84–93  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

82
83
84int uv__process_init(uv_loop_t* loop) {
85 int err;
86
87 err = uv_signal_init(loop, &loop->child_watcher);
88 if (err)
89 return err;
90 uv__handle_unref(&loop->child_watcher);
91 loop->child_watcher.flags |= UV_HANDLE_INTERNAL;
92 return 0;
93}
94
95
96#else

Callers 1

uv_loop_initFunction · 0.70

Calls 1

uv_signal_initFunction · 0.70

Tested by

no test coverage detected