“Existe 1 processo zumbi”

18

Esta mensagem aparece quando eu faço login na minha máquina ...

There is 1 zombie process.
  • O que isso está me dizendo?
  • Isso é algo com que eu deveria me preocupar?
  • Se sim, então o que devo fazer e como?
por John Mee 18.05.2012 / 01:49

1 resposta

14

Não há nada para se preocupar:

Zombie

On Unix operating systems, a zombie process or defunct process is a process that has completed execution but still has an entry in the process table, allowing the process that started it to read its exit status. In the term's colorful metaphor, the child process has died but has not yet been reaped.

When a process ends, all of the memory and resources associated with it are deallocated so they can be used by other processes. However, the process's entry in the process table remains. The parent is sent a SIGCHLD signal indicating that a child has died; the handler for this signal will typically execute the wait system call, which reads the exit status and removes the zombie. The zombie's process ID and entry in the process table can then be reused. However, if a parent ignores the SIGCHLD, the zombie will be left in the process table. In some situations this may be desirable, for example if the parent creates another child process it ensures that it will not be allocated the same process ID.

Fonte: link

    
por 18.05.2012 / 02:53

Tags