<?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: Process hangs with 100% SYS in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960301#M415554</link>
    <description>What is the (virtual) memory situtation.&lt;BR /&gt;If you are low-on / out-off free pages, and teh swapper kicks in aggresivelly then you may see behaviour similar to this: lots of sys time, unresponsive, ...&lt;BR /&gt;&lt;BR /&gt;fwiw,&lt;BR /&gt;Hein.&lt;BR /&gt;</description>
    <pubDate>Thu, 16 Feb 2006 08:36:31 GMT</pubDate>
    <dc:creator>Hein van den Heuvel</dc:creator>
    <dc:date>2006-02-16T08:36:31Z</dc:date>
    <item>
      <title>Process hangs with 100% SYS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960294#M415547</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I have a problem that is confusing me...&lt;BR /&gt;&lt;BR /&gt;Sometimes (i.e., not always) one of the the processes (program developed by us) that I start hangs, consuming 100% system usage. gdb can't attach to it and truss is refused entry. When two of these hang simultaneously, I can't even log on to the machine (it being a 2 CPU one)...&lt;BR /&gt;&lt;BR /&gt;How can I figure out what is happening? &lt;BR /&gt;It's HP-UX 11.23.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance,</description>
      <pubDate>Thu, 16 Feb 2006 05:22:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960294#M415547</guid>
      <dc:creator>Fredrik Lännergren</dc:creator>
      <dc:date>2006-02-16T05:22:55Z</dc:date>
    </item>
    <item>
      <title>Re: Process hangs with 100% SYS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960295#M415548</link>
      <description>See process usage as,&lt;BR /&gt;&lt;BR /&gt;# vmstat&lt;BR /&gt;# UNIX95= ps -ef -o cpu,pcpu,pid,comm&lt;BR /&gt;&lt;BR /&gt;It will show the highest cpu% using process. &lt;BR /&gt;&lt;BR /&gt;# top&lt;BR /&gt;&lt;BR /&gt;will also show the process with cpu% rating. (Not accurate always).&lt;BR /&gt;&lt;BR /&gt;--&lt;BR /&gt;Muthu&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Feb 2006 05:32:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960295#M415548</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2006-02-16T05:32:32Z</dc:date>
    </item>
    <item>
      <title>Re: Process hangs with 100% SYS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960296#M415549</link>
      <description>Hello, &lt;BR /&gt;&lt;BR /&gt;A better way to debug the problem with logging enabled in your application and try running it. &lt;BR /&gt;&lt;BR /&gt;Also, did you change any kernel parameters ? &lt;BR /&gt;&lt;BR /&gt;-Arun</description>
      <pubDate>Thu, 16 Feb 2006 05:36:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960296#M415549</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2006-02-16T05:36:34Z</dc:date>
    </item>
    <item>
      <title>Re: Process hangs with 100% SYS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960297#M415550</link>
      <description>Sounds like the process might be doing something like an infinite loop, calling some system function repeatedly or with insane parameters that make the system function take ages to complete. Because most of the time is spent inside the system function, you get 100% SYS usage.&lt;BR /&gt;&lt;BR /&gt;You could freeze the process for investigation with "kill -STOP &lt;PROCESSID&gt;". A stopped process will not respond to most signals, but you can use tools like lsof to get more information on what the process was doing. You can then unfreeze the process with "kill -CONT &lt;PROCESSID&gt;", and terminate it as necessary.&lt;BR /&gt;&lt;BR /&gt;With "kill -ABRT &lt;PROCESSID&gt;" or "kill -QUIT &lt;PROCESSID&gt;" you should be able to force the process to exit creating a core dump file. You might then be able to get more information by analyzing the core dump.&lt;BR /&gt;&lt;BR /&gt;Of course you must have enabled the core dump creation (if "ulimit -c" is set to zero, core file creation is disabled) before the process is started.&lt;BR /&gt;&lt;/PROCESSID&gt;&lt;/PROCESSID&gt;&lt;/PROCESSID&gt;&lt;/PROCESSID&gt;</description>
      <pubDate>Thu, 16 Feb 2006 05:44:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960297#M415550</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2006-02-16T05:44:54Z</dc:date>
    </item>
    <item>
      <title>Re: Process hangs with 100% SYS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960298#M415551</link>
      <description>Thanks for the answers, but:&lt;BR /&gt;&lt;BR /&gt;Muthukumar: I already know what process is doing this.&lt;BR /&gt;&lt;BR /&gt;Arunvijai: This is during startup of the process, and the source code is a few hundred kloc. It would take awhile to do that, so I would like to find some shortcut first...&lt;BR /&gt;&lt;BR /&gt;Matti Kurkela: The process doesn't respond to _any_ kills, including kill -9, kill -STOP and kill -ABRT. It just continues happily eating 100% system time.&lt;BR /&gt;&lt;BR /&gt;Mind you, this problem only happens sometimes, so it's some kind of timing issue; inserting debug code may change the behavior of the program.&lt;BR /&gt;&lt;BR /&gt;Any other ideas? *looks hopeful*</description>
      <pubDate>Thu, 16 Feb 2006 06:25:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960298#M415551</guid>
      <dc:creator>Fredrik Lännergren</dc:creator>
      <dc:date>2006-02-16T06:25:08Z</dc:date>
    </item>
    <item>
      <title>Re: Process hangs with 100% SYS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960299#M415552</link>
      <description>I just found out that I can't kill the process because it has pri of 134... in fact, _all_ my processes have a PRI above 128....but what could possibly make that happen?&lt;BR /&gt;&lt;BR /&gt;Appreciate any hint... faulty kernel parameters, maybe?</description>
      <pubDate>Thu, 16 Feb 2006 07:59:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960299#M415552</guid>
      <dc:creator>Fredrik Lännergren</dc:creator>
      <dc:date>2006-02-16T07:59:55Z</dc:date>
    </item>
    <item>
      <title>Re: Process hangs with 100% SYS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960300#M415553</link>
      <description>Hi Fredrik,&lt;BR /&gt;&lt;BR /&gt;I dont see what PRI has to do with not being able to do a kill...&lt;BR /&gt;Under which UID is the program running?&lt;BR /&gt;If root why?&lt;BR /&gt;If not root did you try as root to kill -9 PI and PPID at the same time?&lt;BR /&gt;Now as root did you use glance/gpm to monitor the systems activity before then during your program execution? you should be able to follow and see when it is consuming resources what it is doing or why it is waiting...&lt;BR /&gt;&lt;BR /&gt;It is difficult to give you some advice since you didnt explain what the program does and so we dont have much clues...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;All the best&lt;BR /&gt;Victor</description>
      <pubDate>Thu, 16 Feb 2006 08:25:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960300#M415553</guid>
      <dc:creator>Victor BERRIDGE</dc:creator>
      <dc:date>2006-02-16T08:25:10Z</dc:date>
    </item>
    <item>
      <title>Re: Process hangs with 100% SYS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960301#M415554</link>
      <description>What is the (virtual) memory situtation.&lt;BR /&gt;If you are low-on / out-off free pages, and teh swapper kicks in aggresivelly then you may see behaviour similar to this: lots of sys time, unresponsive, ...&lt;BR /&gt;&lt;BR /&gt;fwiw,&lt;BR /&gt;Hein.&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Feb 2006 08:36:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960301#M415554</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2006-02-16T08:36:31Z</dc:date>
    </item>
    <item>
      <title>Re: Process hangs with 100% SYS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960302#M415555</link>
      <description>Hi Victor, &lt;BR /&gt;&lt;BR /&gt;I saw a message at &lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=939681" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=939681&lt;/A&gt;&lt;BR /&gt; saying that kernel prio processes can't be signalled. A message in thread &lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=190861" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=190861&lt;/A&gt;&lt;BR /&gt;says that PRI 128-153 are unkillable. Attempting to kill it along with its PPID, there's no change.&lt;BR /&gt;&lt;BR /&gt;The process is owned by me, not root. I'm not allowed root access. The process cannot be attached to with a debugger, nor trussed. GlancePlus didn't give much... Not a single system call is made, only four files are open, there are 0% wait state for disk io, streams, semaphores, network or anything else. Disk IO rate is 0. When I attempt to look at the process memory regions in GlancePlus, it hangs totally and can't be killed.&lt;BR /&gt;&lt;BR /&gt;As for what the program does... well, given that is encompasses a few hundred thousand lines of code, that would take some explaining. Thing is, I don't even know in what state of startup it is, so I don't know what's going on either. Lots of file I/O is usually involved at startup, though. All I know is that it's early on; its mirror processes running the same binary use 53 MB, whereas this copy only got to 1.3 MB RAM before it "stuck" at 100% system, and it has stuck for the last six hours. &lt;BR /&gt;&lt;BR /&gt;I'm not sure what you would like to know?</description>
      <pubDate>Thu, 16 Feb 2006 09:09:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960302#M415555</guid>
      <dc:creator>Fredrik Lännergren</dc:creator>
      <dc:date>2006-02-16T09:09:21Z</dc:date>
    </item>
    <item>
      <title>Re: Process hangs with 100% SYS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960303#M415556</link>
      <description>Fredrik --&lt;BR /&gt;&lt;BR /&gt;If you have q4 on your system, you might be able to get a stack trace by running:&lt;BR /&gt;&lt;BR /&gt;q4 -p /stand/vmunix /dev/kmem&lt;BR /&gt;&lt;BR /&gt;then at the q4 prompt:&lt;BR /&gt;&lt;BR /&gt;trace processor 0&lt;BR /&gt;trace processor 1&lt;BR /&gt;&lt;BR /&gt;One of those will be your q4 process probably, but the other should be your hung process.&lt;BR /&gt;&lt;BR /&gt;Another way would be to get a TOC of your machine when this is happening and then use&lt;BR /&gt;the document OZBEKBRC00000611 to pull stack traces of all the processes (the part using analyze.pl and the Analyze command).&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www1.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&amp;amp;docId=OZBEKBRC00000611" target="_blank"&gt;http://www1.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&amp;amp;docId=OZBEKBRC00000611&lt;/A&gt;</description>
      <pubDate>Thu, 16 Feb 2006 09:14:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960303#M415556</guid>
      <dc:creator>Kent Ostby</dc:creator>
      <dc:date>2006-02-16T09:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: Process hangs with 100% SYS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960304#M415557</link>
      <description>Just a little one...&lt;BR /&gt;&lt;BR /&gt;What is the parent PID ?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Courage!&lt;BR /&gt;Victor</description>
      <pubDate>Thu, 16 Feb 2006 09:22:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960304#M415557</guid>
      <dc:creator>Victor BERRIDGE</dc:creator>
      <dc:date>2006-02-16T09:22:44Z</dc:date>
    </item>
    <item>
      <title>Re: Process hangs with 100% SYS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960305#M415558</link>
      <description>Hi Hein,&lt;BR /&gt;&lt;BR /&gt;These numbers are from gpm memory report:&lt;BR /&gt;-----------------------------------------&lt;BR /&gt;Phys Mem: 4.0 gb&lt;BR /&gt;Sys Mem: 694 mb&lt;BR /&gt;Buf Cache: 1.2 gb&lt;BR /&gt;User Mem: 1.2 gb&lt;BR /&gt;Free Mem: 940 mb&lt;BR /&gt;&lt;BR /&gt;Total VM: 1.6 gb &lt;BR /&gt;Active VM: 1.4 gb&lt;BR /&gt;------------------------------------------&lt;BR /&gt;On the other hand, the CPU report says that it spends an average of over 50% on V (page) faults? How can this add up?</description>
      <pubDate>Thu, 16 Feb 2006 09:25:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960305#M415558</guid>
      <dc:creator>Fredrik Lännergren</dc:creator>
      <dc:date>2006-02-16T09:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: Process hangs with 100% SYS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960306#M415559</link>
      <description>Hi Victor, &lt;BR /&gt;PPID is 3919, and its PPID in turn is 1, which it should be since that process, our monitor so to speak, supposed to run as a daemon.&lt;BR /&gt;&lt;BR /&gt;BR,&lt;BR /&gt;  Fredrik</description>
      <pubDate>Thu, 16 Feb 2006 09:29:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960306#M415559</guid>
      <dc:creator>Fredrik Lännergren</dc:creator>
      <dc:date>2006-02-16T09:29:00Z</dc:date>
    </item>
    <item>
      <title>Re: Process hangs with 100% SYS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960307#M415560</link>
      <description>Hi Kent, &lt;BR /&gt;&lt;BR /&gt;I couldn't find q4 on the machine, unfortunately. Besides, it sounds to me like you have to be root to run it? I don't have root access....</description>
      <pubDate>Thu, 16 Feb 2006 09:30:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960307#M415560</guid>
      <dc:creator>Fredrik Lännergren</dc:creator>
      <dc:date>2006-02-16T09:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: Process hangs with 100% SYS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960308#M415561</link>
      <description>q4 should be in /usr/contrib/bin, but wait and follow Kents advice for he is a q4 guru...&lt;BR /&gt;&lt;BR /&gt;All the best&lt;BR /&gt;Victor</description>
      <pubDate>Thu, 16 Feb 2006 09:40:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960308#M415561</guid>
      <dc:creator>Victor BERRIDGE</dc:creator>
      <dc:date>2006-02-16T09:40:51Z</dc:date>
    </item>
    <item>
      <title>Re: Process hangs with 100% SYS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960309#M415562</link>
      <description>Hi Victor, &lt;BR /&gt;&lt;BR /&gt;well, in that case, I definitely don't have q4. :)&lt;BR /&gt;&lt;BR /&gt;BR,&lt;BR /&gt;  Fredrik</description>
      <pubDate>Thu, 16 Feb 2006 09:43:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960309#M415562</guid>
      <dc:creator>Fredrik Lännergren</dc:creator>
      <dc:date>2006-02-16T09:43:53Z</dc:date>
    </item>
    <item>
      <title>Re: Process hangs with 100% SYS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960310#M415563</link>
      <description>Are you on an itanium box?&lt;BR /&gt;when you type model, what do you get?&lt;BR /&gt;&lt;BR /&gt;Normally on (well PA-risc anyway) it is with the core-os...&lt;BR /&gt;&lt;BR /&gt;All the best&lt;BR /&gt;Victor</description>
      <pubDate>Thu, 16 Feb 2006 10:03:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960310#M415563</guid>
      <dc:creator>Victor BERRIDGE</dc:creator>
      <dc:date>2006-02-16T10:03:07Z</dc:date>
    </item>
    <item>
      <title>Re: Process hangs with 100% SYS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960311#M415564</link>
      <description>Hi Victor, &lt;BR /&gt;&lt;BR /&gt;no, actually, it's not an Itanium. Unless someone has fooled me greatly....&lt;BR /&gt;&lt;BR /&gt;"model" gives: 9000/800/A500-7X&lt;BR /&gt;&lt;BR /&gt;BR,&lt;BR /&gt;  Fredrik&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Feb 2006 10:05:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960311#M415564</guid>
      <dc:creator>Fredrik Lännergren</dc:creator>
      <dc:date>2006-02-16T10:05:44Z</dc:date>
    </item>
    <item>
      <title>Re: Process hangs with 100% SYS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960312#M415565</link>
      <description>What about :&lt;BR /&gt;ant:/usr/contrib/Q4/bin $ ll&lt;BR /&gt;total 12394&lt;BR /&gt;-r-xr-xr-x   1 bin        bin         250792 Nov  5  2003 getasm&lt;BR /&gt;-r-xr-xr-x   1 bin        bin         460837 Nov  5  2003 kmeminfo&lt;BR /&gt;-r-xr-xr-x   1 bin        bin         495616 Nov  5  2003 nm.elf&lt;BR /&gt;-r-xr-xr-x   1 bin        bin            932 Nov  5  2003 nm.q4.sw&lt;BR /&gt;-r-xr-xr-x   1 bin        bin          32768 Nov  5  2003 nm.som&lt;BR /&gt;-r-xr-xr-x   1 bin        bin        1546916 Nov  5  2003 perl&lt;BR /&gt;-r-xr-xr-x   1 bin        bin             61 Nov  5  2003 q4&lt;BR /&gt;-r-xr-xr-x   1 bin        bin         139615 Nov  5  2003 q4.pxdb&lt;BR /&gt;-r-xr-xr-x   1 bin        bin        3119736 Nov  5  2003 q4exe&lt;BR /&gt;-r-xr-xr-x   1 bin        bin           2292 Nov  5  2003 q4pxdb&lt;BR /&gt;-r-xr-xr-x   1 bin        bin         290816 Nov  5  2003 q4pxdb64&lt;BR /&gt;-r-xr-xr-x   1 bin        bin            559 Nov  5  2003 set_env&lt;BR /&gt;ant:/usr/contrib/Q4/bin $ &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;All the best&lt;BR /&gt;Victor</description>
      <pubDate>Thu, 16 Feb 2006 10:09:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960312#M415565</guid>
      <dc:creator>Victor BERRIDGE</dc:creator>
      <dc:date>2006-02-16T10:09:54Z</dc:date>
    </item>
    <item>
      <title>Re: Process hangs with 100% SYS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960313#M415566</link>
      <description>Hi Victor,&lt;BR /&gt;&lt;BR /&gt;ah, _there_ it was. I now tried running what Kent wrote, but all I got was:&lt;BR /&gt;&lt;BR /&gt;@(#) q4 $Revision: 11.X B.11.23l Wed Jun 23 18:05:11 PDT 2004$ 0&lt;BR /&gt;q4: (error) failed to open kmem, errno = d&lt;BR /&gt;&lt;BR /&gt;I guess that's q4 lingo for "DENIED" ?&lt;BR /&gt;&lt;BR /&gt;BR,   &lt;BR /&gt;  Fredrik</description>
      <pubDate>Thu, 16 Feb 2006 10:17:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-hangs-with-100-sys/m-p/4960313#M415566</guid>
      <dc:creator>Fredrik Lännergren</dc:creator>
      <dc:date>2006-02-16T10:17:05Z</dc:date>
    </item>
  </channel>
</rss>

