exec并不是生成新的进程还是在原进程执行
我们通常先创建一个子进程,在子进程里面使用exec,因为调用exec成功后,原进程的资源都被取代,除了一些进程ID等,所以在子进程里面调用exec,对原进程无影响。
前六个是标准C库函数,最后一个是Linux系统函数,最常用的是前两个
/*
#include <unistd.h>
int execl(const char *path, const char *arg, ...);
参数:
- path: 需要指定的执行的文件的路径或者名称 (推荐绝对路径)
- arg:是执行可执行文件所需的参数列表
第一个参数没什么用,一般为可执行文件的名称
从第二个参数往后,就是程序执行所需的参数
参数最后需要NULL结束
返回值:
只有出错的时候有返回值,返回-1,并且设置errno
调用成功 没有返回值
*/
#include<stdio.h>
#include <unistd.h>
int main() {
pid_t pid = fork();
if(pid > 0) {
printf("father, pid: %d\n", getpid());
}else if(pid == 0) {
printf("son, pid: %d\n", getpid());
execl("hello","hello","NULL");
}
for(int i = 0; i < 3; i++) {
printf("i: %d, pid = %d\n", i, getpid());
}
}
但是发现execl的内容没和他们一起运行,有孤儿进程