<?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 ps Question in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/ps-question/m-p/2631777#M891658</link>
    <description>Hello &lt;BR /&gt;I have attached a file for the process output from ps. Can somebody exaplain the output header.&lt;BR /&gt;e.g. what does it mean F,WCHAN etc&lt;BR /&gt;&lt;BR /&gt;Thanks a lot&lt;BR /&gt;George</description>
    <pubDate>Mon, 17 Dec 2001 20:20:04 GMT</pubDate>
    <dc:creator>George Nikoloudis_1</dc:creator>
    <dc:date>2001-12-17T20:20:04Z</dc:date>
    <item>
      <title>ps Question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ps-question/m-p/2631777#M891658</link>
      <description>Hello &lt;BR /&gt;I have attached a file for the process output from ps. Can somebody exaplain the output header.&lt;BR /&gt;e.g. what does it mean F,WCHAN etc&lt;BR /&gt;&lt;BR /&gt;Thanks a lot&lt;BR /&gt;George</description>
      <pubDate>Mon, 17 Dec 2001 20:20:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ps-question/m-p/2631777#M891658</guid>
      <dc:creator>George Nikoloudis_1</dc:creator>
      <dc:date>2001-12-17T20:20:04Z</dc:date>
    </item>
    <item>
      <title>Re: ps Question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ps-question/m-p/2631778#M891659</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Do a "man ps".&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;regds&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Dec 2001 20:23:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ps-question/m-p/2631778#M891659</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2001-12-17T20:23:18Z</dc:date>
    </item>
    <item>
      <title>Re: ps Question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ps-question/m-p/2631779#M891660</link>
      <description>hey,&lt;BR /&gt;&lt;BR /&gt;wchan -  The event for which the process is waiting or sleeping; if there is none, a hyphen (-) is displayed !&lt;BR /&gt;&lt;BR /&gt;See man ps for all details.&lt;BR /&gt;&lt;BR /&gt;or see this:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.docs.hp.com/hpux/onlinedocs/B2355-90680/B2355-90680.html" target="_blank"&gt;http://www.docs.hp.com/hpux/onlinedocs/B2355-90680/B2355-90680.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Shiju</description>
      <pubDate>Mon, 17 Dec 2001 20:33:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ps-question/m-p/2631779#M891660</guid>
      <dc:creator>Helen French</dc:creator>
      <dc:date>2001-12-17T20:33:20Z</dc:date>
    </item>
    <item>
      <title>Re: ps Question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ps-question/m-p/2631780#M891661</link>
      <description>Hello George,&lt;BR /&gt;&lt;BR /&gt;guess what, the man page is not that helpful, is it? ;-)&lt;BR /&gt;Well, "F" is the easier one, since there are only a few values possible states:&lt;BR /&gt;0=Nonexistent, S=Sleeping, W=Waiting, R=Running, I=Intermediate, Z=Zombie=Terminated, T=Traced, X=Growing &lt;BR /&gt;The states "S" and "W" are the ones where you are interested in the "WCHAN", which is the "Wait CHANnel". Take a file I/O, for example: your process  reads or writes to/from a file. Of course, this means a buffer in the UNIX buffer cache is used in between your process and the real hardware to buffer that I/O. So on reading your process "waits" on that buffer to become available - then "WCHAN" is the address of that buffer in kernel memory (well, it is that buffer's "hash bucket", but that does not really matter). The important fact is, that two processes waiting on the same WCHAN do actually wait for the same thing to happen.&lt;BR /&gt;&lt;BR /&gt;BTW, do not worry about that state "Z" as "zombie" AND as "terminated" - every process, when dieing, send a signal (SIGCHLD = Death of a Child) to its parent process and then stays in state "Z" until that signal has been processed by the parent process. Then the child dies and rots away immediately. That's just how processes die in UN*X! Only if the parent process CANNOT process the signal, the child STAYS as a zombie (due to errors) and these nobody likes :-(&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Wodisc</description>
      <pubDate>Mon, 17 Dec 2001 20:39:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ps-question/m-p/2631780#M891661</guid>
      <dc:creator>Wodisch</dc:creator>
      <dc:date>2001-12-17T20:39:23Z</dc:date>
    </item>
    <item>
      <title>Re: ps Question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ps-question/m-p/2631781#M891662</link>
      <description>wchan = the event for which the process is sleeping or waiting. If there is none than a hyphen is displayed.&lt;BR /&gt;&lt;BR /&gt;Hope that helps,&lt;BR /&gt;Rita</description>
      <pubDate>Mon, 17 Dec 2001 20:47:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ps-question/m-p/2631781#M891662</guid>
      <dc:creator>Rita C Workman</dc:creator>
      <dc:date>2001-12-17T20:47:40Z</dc:date>
    </item>
    <item>
      <title>Re: ps Question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ps-question/m-p/2631782#M891663</link>
      <description>Dear Wodisc :&lt;BR /&gt;Is "Wait CHANnel" = Take a file I/O ?</description>
      <pubDate>Thu, 15 Apr 2004 04:34:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ps-question/m-p/2631782#M891663</guid>
      <dc:creator>Romeo_Lou</dc:creator>
      <dc:date>2004-04-15T04:34:03Z</dc:date>
    </item>
  </channel>
</rss>

