pub fn make_node_init(
    node: &mut NodeContext,
    argc: i32,
    argv: &[*mut u8],
    exit_status: &mut i32
) -> Box<dyn Init>
Expand description

| Return implementation of Init interface for | the node process. | | If the argv indicates that this is a child | process spawned to handle requests from | a parent process, this blocks and handles | requests, then returns null and a status code | to exit with. | | If this returns non-null, the caller can start | up normally and use the Init object to spawn | and connect to other processes while it is | running.