parrotcode: config\gen\platform\win32\exec.c | |
Contents | C |
config\gen\platform\win32\exec.c
Functions for dealing with child processes and Execs.
INTVAL Parrot_Run_OS_Command(Parrot_Interp interp, STRING *command)
command
.
Waits for the process to complete,
and then returns the exit code in POSIX-compatibility mode.INTVAL Parrot_Run_OS_Command_Argv(Parrot_Interp interp, PMC *cmdargs)
cmdargs
PMC array.
The first array element should be the name of the process to spawn,
and the remainder of the array elements should be arguments.
Waits until the child process completes,
and returns the exit code in POSIX-compatibility mode.void Parrot_Exec_OS_Command(Parrot_Interp interp, STRING *command)
|