<?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: How to use librtc in HP-PA to identify the memory issues in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-use-librtc-in-hp-pa-to-identify-the-memory-issues/m-p/4246177#M677992</link>
    <description>Read the wdb documentation:&lt;BR /&gt;&lt;A href="http://www.hp.com/go/wdb" target="_blank"&gt;http://www.hp.com/go/wdb&lt;/A&gt;&lt;BR /&gt;See: Memory Debugging Capabilities&lt;BR /&gt;See the Whitepapers on the documentation link.&lt;BR /&gt;&lt;BR /&gt;This is mainly geared to finding leaks and heap corruption.</description>
    <pubDate>Tue, 05 Aug 2008 12:31:32 GMT</pubDate>
    <dc:creator>Dennis Handly</dc:creator>
    <dc:date>2008-08-05T12:31:32Z</dc:date>
    <item>
      <title>How to use librtc in HP-PA to identify the memory issues</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-use-librtc-in-hp-pa-to-identify-the-memory-issues/m-p/4246176#M677991</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;In sun platform,I used libumem library instead of libc and compiled the code to identify memory issues. Is there any similar kind of a library in HP-UX?&lt;BR /&gt;Will librtc solve the above mentioned problem? If yes, what is the usage of librtc.sl in HP PA and HP IA?</description>
      <pubDate>Tue, 05 Aug 2008 07:17:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-use-librtc-in-hp-pa-to-identify-the-memory-issues/m-p/4246176#M677991</guid>
      <dc:creator>How to use librtc and i</dc:creator>
      <dc:date>2008-08-05T07:17:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to use librtc in HP-PA to identify the memory issues</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-use-librtc-in-hp-pa-to-identify-the-memory-issues/m-p/4246177#M677992</link>
      <description>Read the wdb documentation:&lt;BR /&gt;&lt;A href="http://www.hp.com/go/wdb" target="_blank"&gt;http://www.hp.com/go/wdb&lt;/A&gt;&lt;BR /&gt;See: Memory Debugging Capabilities&lt;BR /&gt;See the Whitepapers on the documentation link.&lt;BR /&gt;&lt;BR /&gt;This is mainly geared to finding leaks and heap corruption.</description>
      <pubDate>Tue, 05 Aug 2008 12:31:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-use-librtc-in-hp-pa-to-identify-the-memory-issues/m-p/4246177#M677992</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2008-08-05T12:31:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to use librtc in HP-PA to identify the memory issues</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-use-librtc-in-hp-pa-to-identify-the-memory-issues/m-p/4246178#M677993</link>
      <description>As per the steps mentioned in &lt;A href="http://g4u0420c.houston.hp.com/en/5991-7502/5991-7502.pdf," target="_blank"&gt;http://g4u0420c.houston.hp.com/en/5991-7502/5991-7502.pdf,&lt;/A&gt; I  tried to execute the batch of debugging for identification of memory leaks. Though, I did not encounter any errors on exeuction of the same, no putput reports of the leaks were obtained. &lt;BR /&gt;Can any one help in indetification of the same?</description>
      <pubDate>Tue, 05 Aug 2008 13:20:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-use-librtc-in-hp-pa-to-identify-the-memory-issues/m-p/4246178#M677993</guid>
      <dc:creator>How to use librtc and i</dc:creator>
      <dc:date>2008-08-05T13:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to use librtc in HP-PA to identify the memory issues</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-use-librtc-in-hp-pa-to-identify-the-memory-issues/m-p/4246179#M677994</link>
      <description>&lt;!--!*#--&gt;&amp;gt;no output reports of the leaks were obtained.&lt;BR /&gt;&lt;BR /&gt;Start with a trivial program that has leaks:&lt;BR /&gt;#include &lt;STDLIB.H&gt;&lt;BR /&gt;int main() {&lt;BR /&gt;   (void)malloc(1000);&lt;BR /&gt;   return 0;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;Did you read the Prerequisites in the document?&lt;/STDLIB.H&gt;</description>
      <pubDate>Tue, 05 Aug 2008 13:35:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-use-librtc-in-hp-pa-to-identify-the-memory-issues/m-p/4246179#M677994</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2008-08-05T13:35:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to use librtc in HP-PA to identify the memory issues</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-use-librtc-in-hp-pa-to-identify-the-memory-issues/m-p/4246180#M677995</link>
      <description>I used the same example given in that document and still achieved nothing.</description>
      <pubDate>Tue, 05 Aug 2008 14:03:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-use-librtc-in-hp-pa-to-identify-the-memory-issues/m-p/4246180#M677995</guid>
      <dc:creator>How to use librtc and i</dc:creator>
      <dc:date>2008-08-05T14:03:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to use librtc in HP-PA to identify the memory issues</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-use-librtc-in-hp-pa-to-identify-the-memory-issues/m-p/4246181#M677996</link>
      <description>My compiler versions&lt;BR /&gt;------------&lt;BR /&gt;         $Revision: 92453-07 linker linker crt0.o B.11.16.01 030316 $       &lt;BR /&gt;        HP aC++ B3910B A.03.55&lt;BR /&gt;        HP aC++ B3910B X.03.37.01 Language Support Library&lt;BR /&gt;-------------&lt;BR /&gt;        $Revision: 92453-07 linker linker crt0.o B.11.16.01 030316 $&lt;BR /&gt;        LINT B.11.11.10 CXREF B.11.11.10&lt;BR /&gt;        HP92453-01 B.11.11.10 HP C Compiler&lt;BR /&gt;         $ PATCH/11.00:PHCO_27774  Oct  3 2002 09:45:59 $&lt;BR /&gt;&lt;BR /&gt;HP-PA version B.11.11 U 9000/800</description>
      <pubDate>Tue, 05 Aug 2008 14:18:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-use-librtc-in-hp-pa-to-identify-the-memory-issues/m-p/4246181#M677996</guid>
      <dc:creator>How to use librtc and i</dc:creator>
      <dc:date>2008-08-05T14:18:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to use librtc in HP-PA to identify the memory issues</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-use-librtc-in-hp-pa-to-identify-the-memory-issues/m-p/4246182#M677997</link>
      <description>&amp;gt;I used the same example given in that document and still achieved nothing.&lt;BR /&gt;&amp;gt;My compiler versions&lt;BR /&gt;&lt;BR /&gt;This is near useless, what is your gdb, librtc and dld versions?</description>
      <pubDate>Wed, 06 Aug 2008 05:28:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-use-librtc-in-hp-pa-to-identify-the-memory-issues/m-p/4246182#M677997</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2008-08-06T05:28:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to use librtc in HP-PA to identify the memory issues</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-use-librtc-in-hp-pa-to-identify-the-memory-issues/m-p/4246183#M677998</link>
      <description>versions:&lt;BR /&gt;&lt;BR /&gt;dld.sl:&lt;BR /&gt;         SMART_BIND&lt;BR /&gt;        92453-07 dld dld dld.sl B.11.60 070209&lt;BR /&gt;&lt;BR /&gt;/usr/local/bin/gdb:&lt;BR /&gt;        $Revision: 92453-07 linker linker crt0.o B.11.47 051104 $&lt;BR /&gt;         Hewlett-Packard Wildebeest 5.3.0 30-Jan-2006 15:03 hppa1.1-hp-hpux11.00&lt;BR /&gt;         $ PATCH/11.00:PHCO_27774  Oct  3 2002 09:45:59 $&lt;BR /&gt;&lt;BR /&gt;librtc.sl:&lt;BR /&gt;         Hewlett-Packard Wildebeest 5.3.0 30-Jan-2006 15:03 hppa1.1-hp-hpux11.00</description>
      <pubDate>Wed, 06 Aug 2008 05:32:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-use-librtc-in-hp-pa-to-identify-the-memory-issues/m-p/4246183#M677998</guid>
      <dc:creator>How to use librtc and i</dc:creator>
      <dc:date>2008-08-06T05:32:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to use librtc in HP-PA to identify the memory issues</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-use-librtc-in-hp-pa-to-identify-the-memory-issues/m-p/4246184#M677999</link>
      <description>&amp;gt;92453-07 dld dld dld.sl B.11.60 070209&lt;BR /&gt;&lt;BR /&gt;I don't know if this dld is too old.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;/usr/local/bin/gdb:&lt;BR /&gt;Hewlett-Packard Wildebeest 5.3.0 30-Jan-2006&lt;BR /&gt;&lt;BR /&gt;gdb should be in /opt/langtools/bin/gdb.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;librtc.sl:&lt;BR /&gt;Hewlett-Packard Wildebeest 5.3.0 30-Jan-2006 &lt;BR /&gt;&lt;BR /&gt;You should download the latest wdb.</description>
      <pubDate>Wed, 06 Aug 2008 06:21:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-use-librtc-in-hp-pa-to-identify-the-memory-issues/m-p/4246184#M677999</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2008-08-06T06:21:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to use librtc in HP-PA to identify the memory issues</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-use-librtc-in-hp-pa-to-identify-the-memory-issues/m-p/4246185#M678000</link>
      <description>If you have gotten the answers you need, please read the following about assigning points:&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/service/forums/helptips.do?#33" target="_blank"&gt;http://forums.itrc.hp.com/service/forums/helptips.do?#33&lt;/A&gt;</description>
      <pubDate>Fri, 15 Aug 2008 21:27:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-use-librtc-in-hp-pa-to-identify-the-memory-issues/m-p/4246185#M678000</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2008-08-15T21:27:36Z</dc:date>
    </item>
  </channel>
</rss>

