wc命令

 例子:编译下列代码:

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <fcntl.h>
#include <assert.h>
#include <sys/wait.h>

int
main(int argc, char *argv[])
{
    int rc = fork();
    if (rc < 0) {
        // fork failed; exit
        fprintf(stderr, "fork failed\n");
        exit(1);
    } else if (rc == 0) {
	// child: redirect standard output to a file
	close(STDOUT_FILENO); 
	open("./p4.output", O_CREAT|O_WRONLY|O_TRUNC, S_IRWXU);

	// now exec "wc"...
        char *myargs[3];
        myargs[0] = strdup("wc");   // program: "wc" (word count)
        myargs[1] = strdup("p4.c"); // argument: file to count
        myargs[2] = NULL;           // marks end of array
        execvp(myargs[0], myargs);  // runs word count
    } else {
        // parent goes down this path (original process)
        int wc = wait(NULL);
	assert(wc >= 0);
    }
    return 0;
}

Linux 学习(持续更新。。。)-LMLPHP

 僵尸进程Zombie和孤儿进程orphan

僵尸进程

Linux 学习(持续更新。。。)-LMLPHP

运行下列代码

Linux 学习(持续更新。。。)-LMLPHP

可以看到此时子进程还没有被回收进入僵尸进程

Linux 学习(持续更新。。。)-LMLPHP

孤儿进程

运行下列代码:

Linux 学习(持续更新。。。)-LMLPHP

一开始父子进程都运行

Linux 学习(持续更新。。。)-LMLPHP

而后父进程结束只剩下子进程(由此可看出,此时子进程的父亲已经变成了2969,被过继了)

Linux 学习(持续更新。。。)-LMLPHP

结果如下:

Linux 学习(持续更新。。。)-LMLPHP 

 

03-13 18:19