进程控制可以分为进程创建、终止,获取进程的信息
创建进程可以使用如下函数
system()、fork()、vfork()和popen()函数
-
#include <stdio.h>
-
#include <stdlib.h>
-
-
int main()
-
{
-
system("ps -o pid,ppid,comm "); //调用system函数
-
return 0;
-
}
system函数内部通过调用fork()函数、exec()函数,以及waitpid()函数来实现的
下面是system()函数的源代码
-
1 #include <sys/types.h>
-
2 #include <sys/wait.h>
-
3 #include <errno.h>
-
4 #include <unistd.h>
-
5
-
6 int system(const char * cmdstring)
-
7 {
-
8 pid_t pid;
-
9 int status;
-
10 if(cmdstring == NULL) //如果命令为NULL,直接返回
-
11 {
-
12 reutrn (1);
-
13 }
-
14 if((pid = fork())<0) //调用fork()函数,创建新进程
-
15 {
-
16 status = -1;
-
17 }
-
18 else if(pid == 0) //子进程
-
19 {
-
20 //调用execl()函数来启动新的程序
-
21 execl("/bin/sh", "sh", "-c", cmdstring, (char *)0);
-
22
-
23 _exit(127);
-
24 }
-
25 else //父进程
-
26 {
-
27 while(waitpid(pid, &status, 0) < 0) //等待子进程结束
-
28 {
-
29 if(errno != EINTER)
-
30 {
-
31 status =-1;
-
32 break;
-
33 }
-
34 }
-
35 }
-
36 return status;
-
37 }
阅读(861) | 评论(0) | 转发(0) |