zoukankan      html  css  js  c++  java
  • 快速理解孤儿进程和僵尸进程

    下面是我很久以前在读APUE(《Unix环境高级编程》)对孤儿进程和僵尸进程的理解,为了便于记忆,采用打比方的方式予以解释。 (当然不一定精准,后面我会贴出wikipedia上的专业解释。)

    1. 操作系统OS好比一个公司,公司的CEO就是init进程。
    2. 任何一个子进程都有父进程,就好比任何一个人都有爹。 这里假定子进程为小明,父进程为小明的爸爸。
    3. init进程作为OS公司的CEO,是小明的爷爷(注:小明的爸爸很可能是CEO的第N代后人,N>=1,这里假定N=1)。
    4. 任何一个进程在退出之后都会进入僵死状态,它占有的资源需要交还给操作系统(也就是公司)。
    5. 小明的爷爷跟小明的爸爸有个约定,你要你在,你的儿子你负责,除非你不在了。
    6. 父进程在子进程退出之前退出了,也就是小明还活着,忽然没有爸爸了,于是就成了孤儿(orphan)进程。按照约定,小明(子进程)被小明的爷爷(init进程)收养。
    7. 子进程退出的时候父进程还在,也就是小明没了,小明的爸爸还健在。但是子进程进入僵死状态,父进程什么也不管(没有调用wait获取子进程退出状态)。敢情小明不是小明爸爸亲生的吧,接下来没多久,父进程也退出了,也就是小明的爸爸也挂了。于是子进程(小明)变成了僵尸(zombie)进程。 按照小明爷爷与小明爸爸之间的约定,既然爹都不管,那爷爷也不管,爱谁谁。

    附: 维基百科对对孤儿进程和僵尸进程的解释

    1. Orphan process
    In a Unix-like operating system any orphaned process will be immediately adopted by the special init system process: the kernel sets the parent to init. This operation is called re-parenting and occurs automatically. Even though technically the process has the "init" process as its parent, it is still called an orphan process since the process that originally created it no longer exists.

    【译文】在类Unix操作系统中,任何一个丧父的进程都会被一个名字为init的特殊系统进程所领养:操作系统内核会将已丧父的进程的父亲设置为init进程。这一操作被称之为re-parenting,而且自动执行。虽然从技术上讲,丧父的进程有一个父亲(也就是init进程),但是它还是被称为孤儿进程因为最开始创建它的父进程已经不在了。

    2. Zombie process
    On Unix and Unix-like computer operating systems, a zombie process or defunct process is a process that has completed execution (via the exit system call) but still has an entry in the process table: it is a process in the "Terminated state". This occurs for child processes, where the entry is still needed to allow the parent process to read its child's exit status: once the exit status is read via the wait system call, the zombie's entry is removed from the process table and it is said to be "reaped". A child process always first becomes a zombie before being removed from the resource table. In most cases, under normal system operation zombies are immediately waited on by their parent and then reaped by the system – processes that stay zombies for a long time are generally an error and cause a resource leak.

    The term zombie process derives from the common definition of zombie — an undead person. In the term's metaphor, the child process has "died" but has not yet been "reaped". Also, unlike normal processes, the kill command has no effect on a zombie process.

    Zombie processes should not be confused with orphan processes: an orphan process is a process that is still executing, but whose parent has died. These do not remain as zombie processes; instead, (like all orphaned processes) they are adopted by init (process ID 1), which waits on its children. The result is that a process that is both a zombie and an orphan will be reaped automatically.

    【译文】在Unix和类Unix操作系统中,一个僵尸进程(zombie或defunct)是一个已经结束运行的进程(通过exit系统调用),但是该进程在进程表中还占有一个进程表项: 处于终止状态。 子进程持有的进程表项包含了其退处状态,需要被父进程读取。一旦父进程(通过wait系统调用)读取到子进程的退出状态,处于僵死状态的进程表条目就会被从进程表中移除,这被称之为"reaped"。一个子进程被从进程表项移除之前,总是首先进入僵死状态。 在大多数情况下,处于僵死状态的进程能很快被他们的父进程读取到其退出状态,然后被系统收割(reap)掉 -- (相反)长时间处于僵死状态的进程通常会产生一个错误从而导致资源泄露。

    术语"僵尸进程"源于对zombie的通俗定义--僵死之人。这一术语的隐喻是,子进程已经死了,但是还没有被火化(reaped)。同时,与普通进程不同的时候,kill命令对僵尸进程不起任何作用。(也就是,你无法kill一个僵尸进程。)

    僵尸进程常常与孤儿进程相混淆。一个孤儿进程是一个还在运行的进程,但是它的父亲已经死了。孤儿进程不会进入僵死状态(因为还在运行); 相反,所有的孤儿进程都会被init(进程1)收养。 init进程会等待它的所有子进程退出。 如果一个进程既是僵尸进程又是孤儿进程,那么它会被自动收割(reaped)。

  • 相关阅读:
    Broadcom BCM94352z/DW1560驱动新姿势
    amd显卡更新最新驱动鼠标顿卡的解决方法
    设置 P2415Q & P2715Q 显示器使其支持 HDMI 2.0 启用 4k@60hz
    Web基础之Redis
    前端基础之AJAX
    Java基础之枚举
    解决Tomcat在idea控制台乱码问题
    JQuery基础
    JavaScript基础笔记
    前端基础之Html、CSS
  • 原文地址:https://www.cnblogs.com/idorax/p/6279664.html
Copyright © 2011-2022 走看看