<?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: threads in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/threads/m-p/2650357#M45898</link>
    <description>Try to use this little trick to start your expired glance :&lt;BR /&gt;&lt;BR /&gt;touch -t 200008080101 /var/adm/.ao&lt;BR /&gt;/opt/perf/bin/gpm &amp;amp;&lt;BR /&gt;&lt;BR /&gt;It works at least with version C.02.40.00.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Ciao</description>
    <pubDate>Wed, 23 Jan 2002 13:01:38 GMT</pubDate>
    <dc:creator>Pavel Hampl</dc:creator>
    <dc:date>2002-01-23T13:01:38Z</dc:date>
    <item>
      <title>threads</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/threads/m-p/2650354#M45895</link>
      <description>11.0 N-class&lt;BR /&gt;two parts.&lt;BR /&gt;our system is running an application that uses many multi-threaded processes.&lt;BR /&gt;&lt;BR /&gt;a) How can I get a thread count for the system?&lt;BR /&gt;&lt;BR /&gt;b) is there an easy way to see how many threads each process is using?&lt;BR /&gt;&lt;BR /&gt;TIA&lt;BR /&gt;-Rusty</description>
      <pubDate>Tue, 22 Jan 2002 20:42:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/threads/m-p/2650354#M45895</guid>
      <dc:creator>Rusty Sapper</dc:creator>
      <dc:date>2002-01-22T20:42:07Z</dc:date>
    </item>
    <item>
      <title>Re: threads</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/threads/m-p/2650355#M45896</link>
      <description>&lt;BR /&gt;Do you have glance/measureware installed? If not, you can install a trial version, and then determine if that's what you need, then you can purchase it.&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
      <pubDate>Tue, 22 Jan 2002 20:50:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/threads/m-p/2650355#M45896</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2002-01-22T20:50:52Z</dc:date>
    </item>
    <item>
      <title>Re: threads</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/threads/m-p/2650356#M45897</link>
      <description>I've already tried the glance option.  This server must have already used the trial version because when I load it and run it, it tells me the trial period has expired.&lt;BR /&gt;&lt;BR /&gt;  I was hoping there was another way besides glance.&lt;BR /&gt;&lt;BR /&gt;-Rusty</description>
      <pubDate>Tue, 22 Jan 2002 21:43:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/threads/m-p/2650356#M45897</guid>
      <dc:creator>Rusty Sapper</dc:creator>
      <dc:date>2002-01-22T21:43:13Z</dc:date>
    </item>
    <item>
      <title>Re: threads</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/threads/m-p/2650357#M45898</link>
      <description>Try to use this little trick to start your expired glance :&lt;BR /&gt;&lt;BR /&gt;touch -t 200008080101 /var/adm/.ao&lt;BR /&gt;/opt/perf/bin/gpm &amp;amp;&lt;BR /&gt;&lt;BR /&gt;It works at least with version C.02.40.00.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Ciao</description>
      <pubDate>Wed, 23 Jan 2002 13:01:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/threads/m-p/2650357#M45898</guid>
      <dc:creator>Pavel Hampl</dc:creator>
      <dc:date>2002-01-23T13:01:38Z</dc:date>
    </item>
    <item>
      <title>Re: threads</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/threads/m-p/2650358#M45899</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;If you have configured q4 you can use this scripts to know the number of threads:&lt;BR /&gt;&lt;BR /&gt;a)Process:&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;cp /stand/vmunix /tmp/vmunixq4&lt;BR /&gt;/usr/contrib/bin/q4pxdb /tmp/vmunixq4 2&amp;gt; /dev/null &lt;BR /&gt;/usr/contrib/bin/q4 /tmp/vmunixq4 /dev/mem  &amp;lt;&amp;lt;-EOF&lt;BR /&gt;load struct proc from proc max nproc&lt;BR /&gt;keep p_pid==$1&lt;BR /&gt;print p_comm p_pid %d p_livethreads %d p_suspended_threads %d p_cached_threads_count %d&lt;BR /&gt;EOF&lt;BR /&gt;&lt;BR /&gt;b)System:&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;cp /stand/vmunix /tmp/vmunixq4&lt;BR /&gt;/usr/contrib/bin/q4pxdb /tmp/vmunixq4&lt;BR /&gt;/usr/contrib/bin/q4 /tmp/vmunixq4 /dev/mem  &amp;lt;&amp;lt;-EOF&lt;BR /&gt;load struct kthread from kthread max nkthread&lt;BR /&gt;keep kt_stat != 0&lt;BR /&gt;EOF&lt;BR /&gt;&lt;BR /&gt;Best regards.&lt;BR /&gt;</description>
      <pubDate>Wed, 23 Jan 2002 15:23:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/threads/m-p/2650358#M45899</guid>
      <dc:creator>oiram</dc:creator>
      <dc:date>2002-01-23T15:23:13Z</dc:date>
    </item>
  </channel>
</rss>

