二十六、Linux 进程与信号---system 函数 和进程状态切换

26.1 system 函数

26.1.1 函数说明

system(执行shell 命令)
相关函数 fork,execve,waitpid,popen

 #include <stdlib.h>
int system(const char * string);
  • 函数功能:简化 exec 函数
  • 函数说明
    • system()会调用 fork() 产生子进程,由子进程来调用 /bin/sh -c string 来执行参数 string 字符串所代表的命令,此命令执行完后随即返回原调用的进程。
    • 在调用 system() 期间 SIGCHLD 信号会被暂时搁置,SIGINT 和 SIGQUIT 信号则会被忽略。
    • 等同于 /bin/bash -c "cmd" 或者 exec("bash", "-c", "cmd")
  • 返回值
    • 如果 system()在调用 /bin/sh 时失败则返回 127,其他失败原因返回-1。
    • 若参数 string 为空指针(NULL),则返回非零值。
    • 如果system()调用成功则最后会返回执行 shell 命令后的返回值,但是此返回值也有可能为 system()调用 /bin/sh 失败所返回的 127,因此最好能再检查 errno 来确认执行成功。
  • 附加说明
    • 在编写具有SUID/SGID权限的程序时请勿使用 system(),system() 会继承环境变量,通过环境变量可能会造成系统安全的问题。

26.1.2 system 应用

 #include <stdio.h>
#include <stdlib.h>
#include <unistd.h> char *cmd = "date"; int main(void)
{
system("clear");
system(cmd); return ;
}

  编译执行

  二十六、Linux 进程与信号---system 函数 和进程状态切换

26.1.3 构建 mysystem 命令

 #include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h> char *cmd1 = "date > s1.txt";
char *cmd2 = "date > s2.txt"; void mysystem(char *cmd)
{
pid_t pid;
if((pid = fork()) < ) {
perror("fork error");
exit();
} else if(pid == ) {
if(execlp("/bin/bash", "/bin/bash", "-c", cmd ,NULL) < ) {
perror("execlp error");
exit();
}
} wait();
} int main(void)
{
system("clear");
system(cmd1); mysystem(cmd2); return ;
}

  编译调试

  二十六、Linux 进程与信号---system 函数 和进程状态切换

26.6 进程状态切换

  二十六、Linux 进程与信号---system 函数 和进程状态切换

  • runnable:就绪状态
  • running:运行状态
  • block/suspend:阻塞或挂起状态
  • dead:终止状态。正在运行的状态调用 return/exit_exit 进入 dead 状态
  • os scheduler:系统调度
上一篇:go bytes缓冲区使用介绍


下一篇:一、Windows Server 2016 AD服务器搭建