<?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 dual processor process vsz very large in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/dual-processor-process-vsz-very-large/m-p/2891871#M719522</link>
    <description>I have too almost identical HPUX boxes running 11.0, one has a single processor, the other dual.&lt;BR /&gt;&lt;BR /&gt;I have written a program and compiled it using gcc3.2 on the single processor m/c.&lt;BR /&gt;&lt;BR /&gt;When running it idles at ~ 50Mb in top.&lt;BR /&gt;&lt;BR /&gt;When testing on the dual processor m/c, the same code idles at 170Mb.&lt;BR /&gt;&lt;BR /&gt;How can I account for the drastic increase in size on a dual processor box.</description>
    <pubDate>Wed, 29 Jan 2003 13:34:59 GMT</pubDate>
    <dc:creator>Iain_8</dc:creator>
    <dc:date>2003-01-29T13:34:59Z</dc:date>
    <item>
      <title>dual processor process vsz very large</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dual-processor-process-vsz-very-large/m-p/2891871#M719522</link>
      <description>I have too almost identical HPUX boxes running 11.0, one has a single processor, the other dual.&lt;BR /&gt;&lt;BR /&gt;I have written a program and compiled it using gcc3.2 on the single processor m/c.&lt;BR /&gt;&lt;BR /&gt;When running it idles at ~ 50Mb in top.&lt;BR /&gt;&lt;BR /&gt;When testing on the dual processor m/c, the same code idles at 170Mb.&lt;BR /&gt;&lt;BR /&gt;How can I account for the drastic increase in size on a dual processor box.</description>
      <pubDate>Wed, 29 Jan 2003 13:34:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dual-processor-process-vsz-very-large/m-p/2891871#M719522</guid>
      <dc:creator>Iain_8</dc:creator>
      <dc:date>2003-01-29T13:34:59Z</dc:date>
    </item>
    <item>
      <title>Re: dual processor process vsz very large</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dual-processor-process-vsz-very-large/m-p/2891872#M719523</link>
      <description>The amount of memory used by a process is limited by the maxdsize kernel parameter.  It could be that this is set to a higher value on the dual proc. m/c.  &lt;BR /&gt;&lt;BR /&gt;Any process can use up to this limit - what happens at that point depends on how the program was written - it can either remain running, but consume no more resources, or it can attempt to increase beyond this limit, most likely resulting in the termination of the process</description>
      <pubDate>Wed, 29 Jan 2003 14:03:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dual-processor-process-vsz-very-large/m-p/2891872#M719523</guid>
      <dc:creator>Chris Wilshaw</dc:creator>
      <dc:date>2003-01-29T14:03:29Z</dc:date>
    </item>
    <item>
      <title>Re: dual processor process vsz very large</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dual-processor-process-vsz-very-large/m-p/2891873#M719524</link>
      <description>There is nothing about multiple processors that affect a simple (non-threaded) program. If your program malloc's memory, then you'll get success (or failure) depending on settings such as maxdsiz. If your program malloc's 50 megs at a time and continues until it fails, the second machine most likely has changed the default kernel parameter maxdsiz from 64megs to something higher. maxdsiz prevent bad programs from allocating too much RAM.&lt;BR /&gt;&lt;BR /&gt;Use kmtune | grep maxdsiz&lt;BR /&gt;&lt;BR /&gt;on both systems.</description>
      <pubDate>Wed, 29 Jan 2003 14:23:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dual-processor-process-vsz-very-large/m-p/2891873#M719524</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2003-01-29T14:23:16Z</dc:date>
    </item>
    <item>
      <title>Re: dual processor process vsz very large</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dual-processor-process-vsz-very-large/m-p/2891874#M719525</link>
      <description>the maxtsiz, maxssiz and maxdsiz are exactly the same. the only difference in the two systems is that one has an extra CPU</description>
      <pubDate>Wed, 29 Jan 2003 14:24:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dual-processor-process-vsz-very-large/m-p/2891874#M719525</guid>
      <dc:creator>Iain_8</dc:creator>
      <dc:date>2003-01-29T14:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: dual processor process vsz very large</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dual-processor-process-vsz-very-large/m-p/2891875#M719526</link>
      <description>fwiw, the program is using pthreads</description>
      <pubDate>Wed, 29 Jan 2003 14:27:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dual-processor-process-vsz-very-large/m-p/2891875#M719526</guid>
      <dc:creator>Iain_8</dc:creator>
      <dc:date>2003-01-29T14:27:22Z</dc:date>
    </item>
    <item>
      <title>Re: dual processor process vsz very large</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dual-processor-process-vsz-very-large/m-p/2891876#M719527</link>
      <description>A threaded program has a lot more options with multiple processors, namely, threads can be run in parallel, the very reason that multiple processors can speed up threaded applications. My guess is that the code takes advantage of this and might grow much larger on a 16 processor system.</description>
      <pubDate>Wed, 29 Jan 2003 15:24:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dual-processor-process-vsz-very-large/m-p/2891876#M719527</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2003-01-29T15:24:03Z</dc:date>
    </item>
  </channel>
</rss>

