函数原型
cpp
#include <unistd.h>
int execl(const char *pathname, const char *arg, ...
/* (char *) NULL */);
int execlp(const char *file, const char *arg, ...
/* (char *) NULL */);
int execle(const char *pathname, const char *arg, ...
/*, (char *) NULL, char *const envp[] */);
int execv(const char *pathname, char *const argv[]);
int execvp(const char *file, char *const argv[]);
int execvpe(const char *file, char *const argv[],
char *const envp[]);
函数说明
这些函数都是以替换的方式,创建一个新的进程替代当前的进程。新的进程与原来的进程号相同,所有的用户空间(代码段、数据段)及部分的内核空间都可以视为是全新的。要注意与fork函数的区别。
- -l 可理解为list,函数参数类似列出的方式,但最后一个参数必须以NULL结尾
- -p
- 带p的等效为shell中直接使用指令,会从PATH的路径查找相关的可执行文件;
- 不带p的函数,则必须使用相对路径或者绝对路径
- -e
- 带e的函数,新进程的环境变量会被清空,来源是原进程传递过来的;
- 不带e的函数,则使用原进程的环境变量(理解:进程替代这一代概念,但又要注意用户空间是全新的)
可变参数 :可以参考va_start系列的(宏)函数,因此,无论是...,还是vector,还是环境变量的数组,最后一个元素必须是NULL!
返回值
The exec() functions return only if an error has occurred. The return value is -1, and errno is set to indicate the error.
exec系列函数只有 在执行错误的有返回值,且返回值为**-1**,相关的错误代码会被设置到errno中