Из execv (3):
int
execv(const char *path, char *const argv[]);
The execv(), execvp(), and execvP() functions provide an array of point-
ers to null-terminated strings that represent the argument list available
to the new program. The first argument, by convention, should point to
the file name associated with the file being executed. The array of
pointers must be terminated by a NULL pointer.
И из execvp (3) (на самом деле та же страница руководства):
int
execvp(const char *file, char *const argv[]);
The functions execlp(), execvp(), and execvP() will duplicate the actions
of the shell in searching for an executable file if the specified file
name does not contain a slash ``/'' character. For execlp() and
execvp(), search path is the path specified in the environment by
``PATH'' variable. If this variable isn't specified, the default path is
set according to the _PATH_DEFPATH definition in <paths.h>, which is set
to ``/usr/bin:/bin''. For execvP(), the search path is specified as an
argument to the function. In addition, certain errors are treated spe-
cially.
Это означает, что вы можете использовать
execv("/absolute/patch/to/child",...)
В качестве альтернативного решения вы можете использовать
execvp("child",...)
с добавлением «/ absolute / patch / to» к PATH.
Примечание: Оба вызова являются вызовами библиотеки, предоставляемыми стандартнымС библиотека.Единственный системный вызов «семейства exec» - это execve ().