进程与信号之exec函数system函数

Posted jmst

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了进程与信号之exec函数system函数相关的知识,希望对你有一定的参考价值。

exec函数:

子进程调用exec函数执行另一个程序,exec函数进程完全由新程序代替,替换原有程序正文,数据,堆,栈段

#include <unistd.h>
extern char **environ;
int execl(const char *path,const char *arg, ...);
int execlp(const char *file,  const char *arg, ...);
int execle(const char *path,const char *arg, ..., char * const envp[]);
int execv(const char *path,char *const argv[]);
int execvp(const char *file, char *const argv[]);
int execve(const char *file, char *const argv[], char *const envp[]);

exec函数出错返回-1,成功不返回

execve是系统函数,其他都是库函数

 

system函数

#include <stdlib.h>

int system(const char *command)

返回:成功返回命令状态,出错返回-1
功能:简化exec函数使用

system函数内部构建一个子进程,由子进程调用exec函数
等同于/bin/bash -c "cmd" 或者 exec("bash","-c","cmd")
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>

char *cmd1="/bin/date";

int main(void)
{
    system("clear");
    system(cmd1);
    
    return 0;
}

system函数源码

#include <sys/types.h>
#include <sys/wait.h>
#include <errno.h>
#include <unistd.h>
int system(const char * cmdstring)
{
    pid_t pid;
    int status;
    if(cmdstring == NULL){
          
         return (1);
    }

    if((pid = fork())<0){
            status = -1;
    }

    else if(pid = 0){
        execl("/bin/sh", "sh", "-c", cmdstring, (char *)0);
        exit(127); 
        }
    else{
            while(waitpid(pid, &status, 0) < 0){
                if(errno != EINTER){
                    status = -1;
                    break;
                }
            }
        }

        return status;

}

 

以上是关于进程与信号之exec函数system函数的主要内容,如果未能解决你的问题,请参考以下文章

system()exec()fork()三个与进程有关的函数的比较

system函数与exec函数区别(system需先启动一个shell才能运行指定命令,调用system函数执行指定命令,原进程等待,之后继续运行;调用exec函数开启新进程后,原进程将被直接关闭)

UNIX中system函数的实现为啥要阻塞SIGCHLD信号?

进程控制---system函数

Linux0.11内核--加载可执行二进制文件之3.exec

进程创建方式与exec函数簇