Module proc

Module proc 

Source
Available on crate feature proc only.
Expand description

Calling/Child process management.

Structs§

NSTDChildProcess
A handle to a child process.

Functions§

nstd_proc_abort
Terminates the program in an abnormal fashion.
nstd_proc_child_id
Returns the OS-assigned ID of a child process.
nstd_proc_exit
Terminates the process with the given exit_code.
nstd_proc_free
Frees a handle to a child process, allowing the process to run in the background.
nstd_proc_id
Returns the ID of the current process.
nstd_proc_join
Waits for a child process to exit.
nstd_proc_kill
Attempts to kill a child process.
nstd_proc_spawn
Spawns a new child process with the name program and returns a handle to it.

Type Aliases§

NSTDOptionalChildProcess
Represents an optional value of type NSTDChildProcess.