[][src]Module simple_libc::exec

Functions

execv

Attempts to execute the given program with the given arguments, replacing the current process. This variant of exec does not perform a PATH lookup, so a full path should be specified.

execve

Attempts to execute the given program with the given arguments and the given environment, replacing the current process. This variant of exec does not perform a PATH lookup, so a full path should be specified.

execvp

Attempts to execute the given program with the given arguments, replacing the current process. This variant of exec performs a PATH lookup, so specifying a full path is not necessary.

fexecve

Attempts to execute the given program with the given arguments and the given environment, replacing the current process. This variant of exec does not perform a PATH lookup, so a full path should be specified.