home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / comp / unix / internal / 1704 < prev    next >
Encoding:
Text File  |  1992-08-18  |  1.6 KB  |  36 lines

  1. Newsgroups: comp.unix.internals
  2. Path: sparky!uunet!wupost!darwin.sura.net!mlb.semi.harris.com!dave.mis.semi.harris.com!dbrillha
  3. From: dbrillha@dave.mis.semi.harris.com (Dave Brillhart)
  4. Subject: Re: kill <exiting> processes
  5. References:  <Aug18.031258.52832@yuma.ACNS.ColoState.EDU>
  6. Date: Tue, 18 Aug 1992 13:28:19 GMT
  7. Nntp-Posting-Host: dave.mis.semi.harris.com
  8. Reply-To: dbrillha@dave.mis.semi.harris.com (Dave Brillhart)
  9. Organization: Harris Semiconductor
  10. Sender: news@mlb.semi.harris.com
  11. Message-ID: <1992Aug18.132819.23117@mlb.semi.harris.com>
  12. Lines: 22
  13.  
  14. >>Does anyone know how to kill off "easily that is" these 
  15. >>kinds of processes short of rebooting the machine.  They
  16. >>are on a decstation 5000 and have been there for days.
  17. >>I have tried kill -9 (process id) but that does work
  18.  
  19. <exiting> processes are simply waiting for their parent to
  20. reap them. One way to release their souls (remove the zombie)
  21. is to kill their parents - the OS then reappoints PID 1
  22. as the zombie's parent. INIT (pid 1) will quickly reap the
  23. zombie processes.
  24.  
  25. For some reason, the original parent ignored the SIGCHLD signals
  26. that alereted it that it's children died. You might want to check
  27. the code if you have it.
  28.  
  29. --
  30. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  31.  Dave Brillhart                              Harris Semiconductor
  32.  dbrillha@dave.mis.semi.harris.com           Mail Stop 62A-024
  33.  Voice: (407) 729-5430                       P.O. Box 883
  34.  Fax:   (407) 724-7486                       Melbourne, FL 32902-0883
  35. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  36.