execvp

Re-executes the program.

Filters out any captive --set twitch.* keygen settings from the arguments originally passed to the program, then calls execvp.

On Windows, the behaviour is faked using spawnProcess.

@safe @system
Pid
execvp
(
string[] args
)

Parameters

args string[]

Arguments passed to the program.

Return Value

Type: Pid

On Windows, a Pid of the spawned process. On Posix, it either exits the program or it throws.

Throws

On Posix, ExecException on failure. On Windows, ProcessException on failure.

Meta