摘要:
1、dup和dup2函数 dup和dup2系统调用都可以用来复制文件描述符,在Shell下输入“man dup”可获取它们的函数原型如下:#include int dup(int oldfd);int dup2(int oldfd,int newfd); dup用来复制参数oldfd所指的文件描述符... 阅读全文
摘要:
1. 产生原因: 在UNIX 系统中,一个进程结束了,但是他的父进程没有等待(调用wait / waitpid)他,那么他将变成一个僵尸进程。通过ps命令查看其带有defunct的标志。僵尸进程是一个早已死亡的进程,但在进程表(processs table)中仍占了一个位置(slot)。 但是如... 阅读全文