<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: process in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/process/m-p/4067051#M306879</link>
    <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;A zombie process is aptly named. It is a process that runs, even uses cpu and memory but does nothing useful and is disconnected from its parent and is not responding.&lt;BR /&gt;&lt;BR /&gt;Normally the only way to get rid of a Zombie process is to reboot.&lt;BR /&gt;&lt;BR /&gt;Application programming issues cause zombies much of the time.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
    <pubDate>Fri, 07 Sep 2007 08:58:33 GMT</pubDate>
    <dc:creator>Steven E. Protter</dc:creator>
    <dc:date>2007-09-07T08:58:33Z</dc:date>
    <item>
      <title>process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process/m-p/4067049#M306877</link>
      <description>what is mean by zombie process</description>
      <pubDate>Fri, 07 Sep 2007 08:51:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process/m-p/4067049#M306877</guid>
      <dc:creator>Indrajit Bhagat</dc:creator>
      <dc:date>2007-09-07T08:51:38Z</dc:date>
    </item>
    <item>
      <title>Re: process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process/m-p/4067050#M306878</link>
      <description>&lt;A href="http://en.wikipedia.org/wiki/Zombie_process" target="_blank"&gt;http://en.wikipedia.org/wiki/Zombie_process&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 07 Sep 2007 08:53:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process/m-p/4067050#M306878</guid>
      <dc:creator>Torsten.</dc:creator>
      <dc:date>2007-09-07T08:53:51Z</dc:date>
    </item>
    <item>
      <title>Re: process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process/m-p/4067051#M306879</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;A zombie process is aptly named. It is a process that runs, even uses cpu and memory but does nothing useful and is disconnected from its parent and is not responding.&lt;BR /&gt;&lt;BR /&gt;Normally the only way to get rid of a Zombie process is to reboot.&lt;BR /&gt;&lt;BR /&gt;Application programming issues cause zombies much of the time.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Fri, 07 Sep 2007 08:58:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process/m-p/4067051#M306879</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2007-09-07T08:58:33Z</dc:date>
    </item>
    <item>
      <title>Re: process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process/m-p/4067052#M306880</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;SEP, you should read the link Torsten posted.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Fri, 07 Sep 2007 09:00:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process/m-p/4067052#M306880</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2007-09-07T09:00:45Z</dc:date>
    </item>
    <item>
      <title>Re: process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process/m-p/4067053#M306881</link>
      <description>&amp;gt;JRF: SEP, you should read the link Torsten posted.&lt;BR /&gt;&lt;BR /&gt;Right.  The only problem with that link is it doesn't use the technical term, zombie master. :-)&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1145648" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1145648&lt;/A&gt;</description>
      <pubDate>Sat, 08 Sep 2007 01:30:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process/m-p/4067053#M306881</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-09-08T01:30:05Z</dc:date>
    </item>
    <item>
      <title>Re: process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process/m-p/4067054#M306882</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;The reason for the "defunct" processes listed when you use the ps &lt;BR /&gt;command is "zombie" processes.  This is the name for a process &lt;BR /&gt;that terminates for any reason, but whose parent process has not &lt;BR /&gt;waited for it to terminate (via wait(2)).  The process that terminated &lt;BR /&gt;continues to occupy a slot in the process table until its parent process &lt;BR /&gt;waits for it.  Because it has terminated, however, there is no other space &lt;BR /&gt;allocated to it either in user or kernel space. &lt;BR /&gt;&lt;BR /&gt;This is a relatively harmless occurrence that rectifies itself the &lt;BR /&gt;next time its parent process waits.  The ps(1) command lists zombie &lt;BR /&gt;processes as "defunct." &lt;BR /&gt;&lt;BR /&gt;WK&lt;BR /&gt;please assign points</description>
      <pubDate>Sat, 08 Sep 2007 12:21:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process/m-p/4067054#M306882</guid>
      <dc:creator>whiteknight</dc:creator>
      <dc:date>2007-09-08T12:21:09Z</dc:date>
    </item>
    <item>
      <title>Re: process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process/m-p/4067055#M306883</link>
      <description>Hi Indrajit,&lt;BR /&gt;            When a process terminates, it sends an exit system call. At this time, the kernel releases resources used by the process. The process becomes a zombie and remains in the zombie state until its parent process gives it permission to die. If the parent process is not responding, the process may be left in a zombie state indefinitely.&lt;BR /&gt;&lt;BR /&gt;          Hope this information helps.</description>
      <pubDate>Sat, 08 Sep 2007 14:13:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process/m-p/4067055#M306883</guid>
      <dc:creator>AL_3001</dc:creator>
      <dc:date>2007-09-08T14:13:44Z</dc:date>
    </item>
  </channel>
</rss>

