Legend:
Library
Module
Module type
Parameter
Class
Class type
Actions to perform after forking a child process.
To spawn a child executable on Unix, the parent forks a copy of itself, then has the child copy set up the environment for the new program and execute it.
However, we cannot run any OCaml code in the forked child process. This is because `fork` only duplicates its own domain. To the child, it appears that all other domains have stopped responding and if it tries to e.g. perform a GC then the child process will hang.
Therefore, the fork call and all child actions need to be written in C. This module provides some support code for doing that. Individual backends will wrap these actions with higher-level APIs and can also add their own platform-specific actions
type fork_fn
A C function, as defined in "include/fork_action.h".
An action that calls run k in the parent process to create the C action. run passes the action to k, which forks the child and runs it. When k returns, run can free any resources used.
val with_actions : t list->(c_action list->'a)->'a
Actions
val execve : string ->argv:string array->env:string array->t
inherit_fds mapping marks file descriptors as not close-on-exec and renumbers them.
For each (fd, src, flags) in mapping, we use dup2 to duplicate src as fd. If there are cycles in mapping, a temporary FD is used to break the cycle. A mapping from an FD to itself simply clears the close-on-exec flag.
After this, the new FDs may also be set as blocking or non-blocking, depending on flags.