<?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: Memory leakage in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-leakage/m-p/3571634#M830971</link>
    <description>Shiv,&lt;BR /&gt;&lt;BR /&gt;Check these threads:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=131413" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=131413&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=104024" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=104024&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=686131" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=686131&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
    <pubDate>Mon, 27 Jun 2005 13:45:27 GMT</pubDate>
    <dc:creator>Pete Randall</dc:creator>
    <dc:date>2005-06-27T13:45:27Z</dc:date>
    <item>
      <title>Memory leakage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-leakage/m-p/3571633#M830970</link>
      <description>Dear Sirs,&lt;BR /&gt;&lt;BR /&gt;How to find out memory leakage due to applications or programs or shared objects by using hpux commands ?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Shiv</description>
      <pubDate>Mon, 27 Jun 2005 13:35:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-leakage/m-p/3571633#M830970</guid>
      <dc:creator>Shivkumar</dc:creator>
      <dc:date>2005-06-27T13:35:28Z</dc:date>
    </item>
    <item>
      <title>Re: Memory leakage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-leakage/m-p/3571634#M830971</link>
      <description>Shiv,&lt;BR /&gt;&lt;BR /&gt;Check these threads:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=131413" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=131413&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=104024" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=104024&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=686131" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=686131&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Mon, 27 Jun 2005 13:45:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-leakage/m-p/3571634#M830971</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2005-06-27T13:45:27Z</dc:date>
    </item>
    <item>
      <title>Re: Memory leakage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-leakage/m-p/3571635#M830972</link>
      <description>date;UNIX95= ps -C"your_prigrm_name" -o "vsz,args,pid" &amp;gt;&amp;gt; /tmp/mem.log&lt;BR /&gt;&lt;BR /&gt;Run this through cron peridically. (for every 5 minutes or so)&lt;BR /&gt;&lt;BR /&gt;If the values for vsz, go on increasing all the time, it may be memory leak problem. &lt;BR /&gt;If you have glance, there is alert defination for it. (I think /opt/perf/examples/adviser/proc_mem_leak)&lt;BR /&gt;&lt;BR /&gt;Yuo can put that in alarmdef file and it will prompt you if it finds one.&lt;BR /&gt;&lt;BR /&gt;Anil</description>
      <pubDate>Mon, 27 Jun 2005 13:47:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-leakage/m-p/3571635#M830972</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2005-06-27T13:47:50Z</dc:date>
    </item>
    <item>
      <title>Re: Memory leakage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-leakage/m-p/3571636#M830973</link>
      <description>All you can find is the size of the program and the size of any shared memory segments that the programs might use. There is no magic to finding a memory 'leak' because the program(s) may be working exactly as designed. As mentioned, you can use the extended ps command (the UNIX95 value) and record this into a file which you then monitor for growth. ps only shows local memory. Shared memory is monitored with ipcs -bmop and as before, you'll have to repeatedly store the results to look for growth. If you see a program that constantly grows, you have to talk to the programmer to see if this is a mistake or normal.</description>
      <pubDate>Mon, 27 Jun 2005 17:05:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-leakage/m-p/3571636#M830973</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2005-06-27T17:05:58Z</dc:date>
    </item>
  </channel>
</rss>

