<?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: I seee many process in sleep mode what does it mean in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/i-seee-many-process-in-sleep-mode-what-does-it-mean/m-p/4427885#M355378</link>
    <description>In fact SLEEPy process are not waiting for CPU ressources, but only IO, timeouts, synchronisation.&lt;BR /&gt;a process waiting for CPU is READY, waiting for the scheduler to RUN it.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;So your process is waiting for IO like read()/select()/poll()/write() ... over sockets, diskIO,  ttys&lt;BR /&gt;memory pagin/pageout like on memory map files&lt;BR /&gt;or timeout, like in a sleep(), sigwait(), &lt;BR /&gt;or synchronisations like mutexes ops, messagequeue operations, semaphores, &lt;BR /&gt;&lt;BR /&gt;to understand on what they are waiting you can for instance use tusc.&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 27 May 2009 20:12:41 GMT</pubDate>
    <dc:creator>Laurent Menase</dc:creator>
    <dc:date>2009-05-27T20:12:41Z</dc:date>
    <item>
      <title>I seee many process in sleep mode what does it mean</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/i-seee-many-process-in-sleep-mode-what-does-it-mean/m-p/4427881#M355374</link>
      <description>mql                12253 matrix1      34.5    15   0.7    87.4mb  431.3mb STRMS&lt;BR /&gt;java               25718 matrix1      21.7    55   0.0    1.29gb   1.90gb SLEEP&lt;BR /&gt;java               12588 matrix1      19.4    78   0.3    1.21gb   1.56gb SLEEP&lt;BR /&gt;java               12576 matrix1      18.9    74   0.3    1.18gb   1.53gb SLEEP&lt;BR /&gt;java                3617 matrix1      17.3    33   0.0   902.2mb   1.50gb SLEEP&lt;BR /&gt;java               12584 matrix1      11.0    79   0.0    1.19gb   1.53gb SLEEP&lt;BR /&gt;java                1166 matrix1       7.4    32   0.0    1.24gb   1.86gb SLEEP&lt;BR /&gt;mql                 6359 matrix1       3.6    15   0.0    91.3mb  434.5mb SLEEP&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; i see many processes in sleep mode wat does it mean.</description>
      <pubDate>Wed, 27 May 2009 14:10:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/i-seee-many-process-in-sleep-mode-what-does-it-mean/m-p/4427881#M355374</guid>
      <dc:creator>arun khatwani</dc:creator>
      <dc:date>2009-05-27T14:10:04Z</dc:date>
    </item>
    <item>
      <title>Re: I seee many process in sleep mode what does it mean</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/i-seee-many-process-in-sleep-mode-what-does-it-mean/m-p/4427882#M355375</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;if a process is sleeping mode, it means that the process is not being executed at that moment and waiting for some resources like i/o, cpu cycles, etc...</description>
      <pubDate>Wed, 27 May 2009 14:44:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/i-seee-many-process-in-sleep-mode-what-does-it-mean/m-p/4427882#M355375</guid>
      <dc:creator>Ganesan R</dc:creator>
      <dc:date>2009-05-27T14:44:51Z</dc:date>
    </item>
    <item>
      <title>Re: I seee many process in sleep mode what does it mean</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/i-seee-many-process-in-sleep-mode-what-does-it-mean/m-p/4427883#M355376</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;You have an awful lot of processes with a large amount of memory in sleep mode.&lt;BR /&gt;&lt;BR /&gt;Sleep mode means they are not active.&lt;BR /&gt;&lt;BR /&gt;You probably have a java application and if the users are all idle, the processes are put to sleep by the OS because no work is being demanded.&lt;BR /&gt;&lt;BR /&gt;So it could be quite innocent.&lt;BR /&gt;&lt;BR /&gt;I think you might want to ask the application developers or provider why there is a need for so much memory to be in these processes.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Wed, 27 May 2009 14:45:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/i-seee-many-process-in-sleep-mode-what-does-it-mean/m-p/4427883#M355376</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2009-05-27T14:45:26Z</dc:date>
    </item>
    <item>
      <title>Re: I seee many process in sleep mode what does it mean</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/i-seee-many-process-in-sleep-mode-what-does-it-mean/m-p/4427884#M355377</link>
      <description>&lt;!--!*#--&gt;Hi:&lt;BR /&gt;&lt;BR /&gt;As noted, a sleeping process is one that is waiting on an event.&lt;BR /&gt;&lt;BR /&gt;In fact, you may want to impose a periodic sleep in simple loops to give other processes a chance to gain the processor.&lt;BR /&gt;&lt;BR /&gt;while true do&lt;BR /&gt;    [ -f myfile_available ] &amp;amp;&amp;amp; break&lt;BR /&gt;    sleep 1&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;...In the above loop, it would be "unkind" to others _not_ to sleep().  If you removed the sleep() you have written what is sometimes called a "buzz-loop".&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;</description>
      <pubDate>Wed, 27 May 2009 15:12:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/i-seee-many-process-in-sleep-mode-what-does-it-mean/m-p/4427884#M355377</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2009-05-27T15:12:46Z</dc:date>
    </item>
    <item>
      <title>Re: I seee many process in sleep mode what does it mean</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/i-seee-many-process-in-sleep-mode-what-does-it-mean/m-p/4427885#M355378</link>
      <description>In fact SLEEPy process are not waiting for CPU ressources, but only IO, timeouts, synchronisation.&lt;BR /&gt;a process waiting for CPU is READY, waiting for the scheduler to RUN it.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;So your process is waiting for IO like read()/select()/poll()/write() ... over sockets, diskIO,  ttys&lt;BR /&gt;memory pagin/pageout like on memory map files&lt;BR /&gt;or timeout, like in a sleep(), sigwait(), &lt;BR /&gt;or synchronisations like mutexes ops, messagequeue operations, semaphores, &lt;BR /&gt;&lt;BR /&gt;to understand on what they are waiting you can for instance use tusc.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 27 May 2009 20:12:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/i-seee-many-process-in-sleep-mode-what-does-it-mean/m-p/4427885#M355378</guid>
      <dc:creator>Laurent Menase</dc:creator>
      <dc:date>2009-05-27T20:12:41Z</dc:date>
    </item>
  </channel>
</rss>

