<?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: shared memory in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/shared-memory/m-p/3094609#M145553</link>
    <description>I want to see all the processes who are attached to a specific shared memory region.&lt;BR /&gt;&lt;BR /&gt;ipcs -ma show only the shared memory regions their id's and the pid of the creator.&lt;BR /&gt;&lt;BR /&gt;i want to see in a giving time which processes are mapped to this regions&lt;BR /&gt;&lt;BR /&gt;thanx.</description>
    <pubDate>Thu, 16 Oct 2003 02:29:49 GMT</pubDate>
    <dc:creator>Alex Lavrov</dc:creator>
    <dc:date>2003-10-16T02:29:49Z</dc:date>
    <item>
      <title>shared memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shared-memory/m-p/3094607#M145551</link>
      <description>I have the following tools:&lt;BR /&gt;kmeminfo&lt;BR /&gt;shminfo&lt;BR /&gt;procsize&lt;BR /&gt;and glance&lt;BR /&gt;how can i fined all the processes who are attached to a single share memory segment ??&lt;BR /&gt;&lt;BR /&gt;I want it to be sorted in this order(by shared memory id).&lt;BR /&gt;&lt;BR /&gt;thnx.</description>
      <pubDate>Thu, 16 Oct 2003 02:11:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shared-memory/m-p/3094607#M145551</guid>
      <dc:creator>Alex Lavrov</dc:creator>
      <dc:date>2003-10-16T02:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: shared memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shared-memory/m-p/3094608#M145552</link>
      <description>"ipcs -ma" will give you the info you need.&lt;BR /&gt;Sorting by id is a little trickier, as the first 3 lines are header info, and will mess up the sort.&lt;BR /&gt;Here's one way:&lt;BR /&gt;--&lt;BR /&gt;ipcs -am|awk '&lt;BR /&gt;        (NR &amp;lt;= 3) {print}&lt;BR /&gt;        (NR &amp;gt;3 ) {print &amp;gt;&amp;gt; "/tmp/ipcs.out"}&lt;BR /&gt;        END { system ("sort -n -k 3,3 /tmp/ipcs.out &amp;amp;&amp;amp; rm /tmp/ipcs.out") }&lt;BR /&gt;        '&lt;BR /&gt;--&lt;BR /&gt;see man ipcs &lt;BR /&gt;--&lt;BR /&gt;Graham</description>
      <pubDate>Thu, 16 Oct 2003 02:24:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shared-memory/m-p/3094608#M145552</guid>
      <dc:creator>Graham Cameron_1</dc:creator>
      <dc:date>2003-10-16T02:24:57Z</dc:date>
    </item>
    <item>
      <title>Re: shared memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shared-memory/m-p/3094609#M145553</link>
      <description>I want to see all the processes who are attached to a specific shared memory region.&lt;BR /&gt;&lt;BR /&gt;ipcs -ma show only the shared memory regions their id's and the pid of the creator.&lt;BR /&gt;&lt;BR /&gt;i want to see in a giving time which processes are mapped to this regions&lt;BR /&gt;&lt;BR /&gt;thanx.</description>
      <pubDate>Thu, 16 Oct 2003 02:29:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shared-memory/m-p/3094609#M145553</guid>
      <dc:creator>Alex Lavrov</dc:creator>
      <dc:date>2003-10-16T02:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: shared memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shared-memory/m-p/3094610#M145554</link>
      <description>Sorry, I misunderstood (or failed to read!).&lt;BR /&gt;ipcs -ma will give you the number of attached processes under the NATTCH col, but I know of no way to list each process.&lt;BR /&gt;You could write a C program to do this, using the shmctl() call. &lt;BR /&gt;With any luck, someone will have already done this.&lt;BR /&gt;Try the porting centre at &lt;A href="http://hpux.connect.org.uk/" target="_blank"&gt;http://hpux.connect.org.uk/&lt;/A&gt;&lt;BR /&gt;-- Graham</description>
      <pubDate>Thu, 16 Oct 2003 02:46:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shared-memory/m-p/3094610#M145554</guid>
      <dc:creator>Graham Cameron_1</dc:creator>
      <dc:date>2003-10-16T02:46:31Z</dc:date>
    </item>
    <item>
      <title>Re: shared memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shared-memory/m-p/3094611#M145555</link>
      <description>I didnt found such a utilitiy.&lt;BR /&gt;&lt;BR /&gt;if some one know where i can find such a utility it will be great.&lt;BR /&gt;&lt;BR /&gt;thanx.</description>
      <pubDate>Thu, 16 Oct 2003 03:48:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shared-memory/m-p/3094611#M145555</guid>
      <dc:creator>Alex Lavrov</dc:creator>
      <dc:date>2003-10-16T03:48:50Z</dc:date>
    </item>
    <item>
      <title>Re: shared memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shared-memory/m-p/3094612#M145556</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;#ipcs -ma&lt;BR /&gt;&lt;BR /&gt;shows all process attached to shared memory</description>
      <pubDate>Thu, 16 Oct 2003 03:54:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shared-memory/m-p/3094612#M145556</guid>
      <dc:creator>Ravi_8</dc:creator>
      <dc:date>2003-10-16T03:54:39Z</dc:date>
    </item>
    <item>
      <title>Re: shared memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shared-memory/m-p/3094613#M145557</link>
      <description>ipcs -ma doesnt show the pids of all the processes that attached to a shared memory region.</description>
      <pubDate>Thu, 16 Oct 2003 03:57:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shared-memory/m-p/3094613#M145557</guid>
      <dc:creator>Alex Lavrov</dc:creator>
      <dc:date>2003-10-16T03:57:59Z</dc:date>
    </item>
    <item>
      <title>Re: shared memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shared-memory/m-p/3094614#M145558</link>
      <description>#ipcs -maob&lt;BR /&gt;&lt;BR /&gt;Also you can use shminfo &lt;BR /&gt;get it from &lt;BR /&gt;&lt;BR /&gt;ftp://contrib:9unsupp8@hprc.external.hp.com/sysadmin/programs/shminfo/</description>
      <pubDate>Thu, 16 Oct 2003 04:25:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shared-memory/m-p/3094614#M145558</guid>
      <dc:creator>T G Manikandan</dc:creator>
      <dc:date>2003-10-16T04:25:46Z</dc:date>
    </item>
    <item>
      <title>Re: shared memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shared-memory/m-p/3094615#M145559</link>
      <description>ipcs -maob is not showing me all the processes that attached to a specific region</description>
      <pubDate>Thu, 16 Oct 2003 05:47:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shared-memory/m-p/3094615#M145559</guid>
      <dc:creator>Alex Lavrov</dc:creator>
      <dc:date>2003-10-16T05:47:30Z</dc:date>
    </item>
  </channel>
</rss>

