Available on crate feature
proc only.Expand description
Calling/Child process management.
Structs§
- NSTD
Child Process - 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
programand returns a handle to it.
Type Aliases§
- NSTD
Optional Child Process - Represents an optional value of type
NSTDChildProcess.