<?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: SYSGEN in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965137#M82602</link>
    <description>Fox,&lt;BR /&gt;&lt;BR /&gt;&amp;gt;Once the processes attains 100% CPU&lt;BR /&gt;&amp;gt;usage,it goes into suspended mode....&lt;BR /&gt;&amp;gt;How does this happen?&lt;BR /&gt;&lt;BR /&gt;  As others have said, just because SHOW PROCESS/CONTINUOUS says a process is suspended, doesn't mean it is in SUSP state. It just means that, for whatever reason, SHOW PROCESS can't access process private data. Use:&lt;BR /&gt;&lt;BR /&gt;$ WRITE SYS$OUTPUT F$GETJPI(pid,"STATE")&lt;BR /&gt;&lt;BR /&gt;to determine the real state of the process.&lt;BR /&gt;&lt;BR /&gt;To reduce the impact on your system, perhaps you should really suspend the process:&lt;BR /&gt;&lt;BR /&gt;$ SET PROCESS/SUSPEND/ID=pid&lt;BR /&gt;&lt;BR /&gt;or lower its priority&lt;BR /&gt;&lt;BR /&gt;$ SET PROCESS/PRIORITY=0/ID=pid&lt;BR /&gt;&lt;BR /&gt;Note that this may not reduce the processes consumption of CPU, but it will put it at the back of the queue of processes competing for CPU. Also realise that just because the system says a process is using 100% CPU, if that were really the case, you couldn't do anything (because you use the CPU to do stuff). A runaway compute bound process will use whatever CPU is left over. OpenVMS does a fairly good job of reducing the impact of a runaway process by giving other processes priority boosts.&lt;BR /&gt;&lt;BR /&gt;You can use ANALYZE/SYSTEM to see what the process is doing. Start with:&lt;BR /&gt;&lt;BR /&gt;$ ANALYZE/SYSTEM&lt;BR /&gt;SDA&amp;gt; SET PROCESS/INDEX=pid&lt;BR /&gt;SDA&amp;gt; SHOW PROCESS/CHANNEL&lt;BR /&gt;&lt;BR /&gt;This should tell you what program or procedure it's running. If the process is suspended, you can use SHOW CALL and SHOW CALL/NEXT to examine the call stack. If you have a link map and source code, with a bit of perseverence it's possible to identify exactly where in the program it's looping. &lt;BR /&gt;&lt;BR /&gt;Another trick is SET PROCESS/DUMP=NOW this should write a process dump, which you can then examine using DEBUG and/or ANALYZE/CRASH. &lt;BR /&gt;&lt;BR /&gt;Final point - the danger of having BALSETCNT much lower than MAXPROCESSCNT is that once you have more than BALSETCNT processes, the excess MUST be outswapped. In itself, not a problem, but if you have processes that scan the system (say an Idle Process Killer), if it's not written very carefully, it will "chase" the outswapped processes down the PID array, resulting in excessive swapping activity. If the scan interval is short enough, you can put your system into a thrashing state. FWIW, from your symptoms I don't believe this is happening, but with the resources you have, I can't think of a valid reason for limiting BALSETCNT so severely.</description>
    <pubDate>Wed, 21 Mar 2007 16:34:30 GMT</pubDate>
    <dc:creator>John Gillings</dc:creator>
    <dc:date>2007-03-21T16:34:30Z</dc:date>
    <item>
      <title>SYSGEN</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965117#M82582</link>
      <description>Hi,&lt;BR /&gt;Can you please let me know how to find process that are swapped out of memory?&lt;BR /&gt;&lt;BR /&gt;The users sessions are getting hanged often &amp;amp; CPU usage is ~ 100%,so I took a lok at balsetcnt...&lt;BR /&gt;&lt;BR /&gt;The value of MAXPROCESSCNT is 521 &amp;amp; BALSETCNT is 207...which I find is not correct.&lt;BR /&gt;Total memory is ~ 1GB&lt;BR /&gt;&lt;BR /&gt;But,when I run &lt;BR /&gt;$ Show mem/slots&lt;BR /&gt;&lt;BR /&gt;swapped is zero.&lt;BR /&gt;So,I guess no swapping is occuring.&lt;BR /&gt;Is the value of balsetcnt right or should be changed to 519....Please advice..&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Mar 2007 07:08:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965117#M82582</guid>
      <dc:creator>FOX MULDER_2</dc:creator>
      <dc:date>2007-03-20T07:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: SYSGEN</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965118#M82583</link>
      <description>Bal set should be maxproc - 2. So 519.&lt;BR /&gt;&lt;BR /&gt;Help show sys/state will help you.&lt;BR /&gt;The state you need is RWSWP but it could be one of the others too.&lt;BR /&gt;&lt;BR /&gt;Wim</description>
      <pubDate>Tue, 20 Mar 2007 07:27:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965118#M82583</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2007-03-20T07:27:18Z</dc:date>
    </item>
    <item>
      <title>Re: SYSGEN</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965119#M82584</link>
      <description>And this explains the states.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://ftp.openvms.compaq.com/doc/83final/6552/6552pro_016.html" target="_blank"&gt;http://ftp.openvms.compaq.com/doc/83final/6552/6552pro_016.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Wim</description>
      <pubDate>Tue, 20 Mar 2007 07:29:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965119#M82584</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2007-03-20T07:29:47Z</dc:date>
    </item>
    <item>
      <title>Re: SYSGEN</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965120#M82585</link>
      <description>It's been a long time I have played with this and I am a bit short on time - others can be more helpful, but allow me a quick warning:&lt;BR /&gt;&lt;BR /&gt;Please do NOT blindly raise BALSETCNT !&lt;BR /&gt;You risk that your system does not boot.&lt;BR /&gt;This can be fixed via conversational boot, but you do need access to the console.</description>
      <pubDate>Tue, 20 Mar 2007 07:48:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965120#M82585</guid>
      <dc:creator>Uwe Zessin</dc:creator>
      <dc:date>2007-03-20T07:48:45Z</dc:date>
    </item>
    <item>
      <title>Re: SYSGEN</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965121#M82586</link>
      <description>I've heard that there's this AUTOGEN thing&lt;BR /&gt;which can help when changing SYSGEN&lt;BR /&gt;parameters.</description>
      <pubDate>Tue, 20 Mar 2007 08:21:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965121#M82586</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2007-03-20T08:21:18Z</dc:date>
    </item>
    <item>
      <title>Re: SYSGEN</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965122#M82587</link>
      <description>I heard too ;-)&lt;BR /&gt;&lt;BR /&gt;But maybe it was AUTOGEN which lowered BALSETCNT because there is a large VA configured and the system might otherwise run out of S0 space. I have seen this on OpenVMS VAX V7.1 many years ago and I don't recall what platform FOX is working on.</description>
      <pubDate>Tue, 20 Mar 2007 08:26:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965122#M82587</guid>
      <dc:creator>Uwe Zessin</dc:creator>
      <dc:date>2007-03-20T08:26:32Z</dc:date>
    </item>
    <item>
      <title>Re: SYSGEN</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965123#M82588</link>
      <description>I would encourage a system-wide evaluation of resources, current load, system capabilities, and local requirements.  &lt;BR /&gt;&lt;BR /&gt;Based on the available information, the system requires some tuning, additional hardware, reduced load, replacement, or a combination.&lt;BR /&gt;&lt;BR /&gt;Looking at the slots and processes is a factor, but there's a whole lot more information required.  It's not clear (to me) around the thought sequence that led from from hung processes and max CPU load to the balance set.  (You're going to have to explain that.)&lt;BR /&gt;&lt;BR /&gt;Start with either the T4 tools or a monitor recording pass (or both), and start gathering baseline data on the current system load.  And at what the application(s) are doing, and at the particular hangs and aberrant behavior.&lt;BR /&gt;&lt;BR /&gt;Given the discussion of the balance set slots and the reported physical memory, I have to assume that this is an OpenVMS VAX box, and specifically VAX 6000 Model 600, VAX 7000, or VAX 10000 series box.  Old and slow.  Big and power-hungry, too.  By coincidence, I posted some details of VAX XPA and XVA just a week ago, over at: &lt;A href="http://64.223.189.234/node/131" target="_blank"&gt;http://64.223.189.234/node/131&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Do you have the source code for your applications, or a way to move off these boxes?  You're working very near or even at the architectural limits of VAX here, which means that if tuning doesn't work, you are left to either off-load or re-schedule or migrate the applications to OpenVMS Alpha or OpenVMS I64.  An rx2660 would likely greatly outperform this VAX box, for instance.&lt;BR /&gt;&lt;BR /&gt;Stephen Hoffman&lt;BR /&gt;HoffmanLabs</description>
      <pubDate>Tue, 20 Mar 2007 08:34:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965123#M82588</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2007-03-20T08:34:03Z</dc:date>
    </item>
    <item>
      <title>Re: SYSGEN</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965124#M82589</link>
      <description>A swapped process can be in a state like HIBO or LEFO (even COMO).&lt;BR /&gt;&lt;BR /&gt;But first some tuning is needed, and may be some memory should be added.</description>
      <pubDate>Tue, 20 Mar 2007 08:37:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965124#M82589</guid>
      <dc:creator>labadie_1</dc:creator>
      <dc:date>2007-03-20T08:37:46Z</dc:date>
    </item>
    <item>
      <title>Re: SYSGEN</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965125#M82590</link>
      <description>Thanks to all for prompt replies.&lt;BR /&gt;&lt;BR /&gt;The problem is a suspended process is taking ~100% CPU usage.&lt;BR /&gt;&lt;BR /&gt;There is a parent process which is creating a sub process &amp;amp; after a while the sub process becomes non existent but when monitored using mon proc/topcpu that process is consuming 100% cpu usage.&lt;BR /&gt;&lt;BR /&gt;I guess that is the reason other user is getting hanged sessions.&lt;BR /&gt;&lt;BR /&gt;The VMS box is DS20E running on 7.3-2.&lt;BR /&gt;It was working fine but only after patching with update 11....these problems are occuring.&lt;BR /&gt;&lt;BR /&gt;So,I while going through sysgen parameter noticed balsetcnt.....&lt;BR /&gt;&lt;BR /&gt;Any suggestion would be very helpful.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Mar 2007 09:03:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965125#M82590</guid>
      <dc:creator>FOX MULDER_2</dc:creator>
      <dc:date>2007-03-20T09:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: SYSGEN</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965126#M82591</link>
      <description>Fox,&lt;BR /&gt;&lt;BR /&gt;so it is Alpha - that is good news.&lt;BR /&gt;The balsetcount vs. VA problem does not apply.&lt;BR /&gt;&lt;BR /&gt;My guess: either someone changed SYSGEN params without using AUTOGEN, or, in MODPARAMS MAXPROCESSCNT as well as BALSETCNT are hard-coded values, and the AUTOGEN warnings were ignored.&lt;BR /&gt;In the latter case, simply remove BALSETCNT from modparams.dat (and files invoked by it, if applicable) and let AUTOGEN recalculate it.&lt;BR /&gt;&lt;BR /&gt;Probably it is best to first do a &lt;BR /&gt;@AUTOGEN SAVPARAMS TESTFILES FEEDBACK&lt;BR /&gt;which reports, does not yet change anything, and review the report.&lt;BR /&gt;&lt;BR /&gt;hth&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Mar 2007 09:41:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965126#M82591</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2007-03-20T09:41:58Z</dc:date>
    </item>
    <item>
      <title>Re: SYSGEN</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965127#M82592</link>
      <description>Stay away from SYSMAN PARAMETER, AUTOGEN and MODPARAMS.DAT for the present.  (Please don't take that the wrong way -- while there might well be a parameter issue here -- it appears far too early to be tweaking parameters.)&lt;BR /&gt;&lt;BR /&gt;A "suspended" process accumulating CPU would initially appear to be a lost I/O, or lost quota, or other kernel-level error.  A much more detailed look at the process and at the loop is going to be required here.  This may well prove to be a bug in the UPDATE kit, for instance.&lt;BR /&gt;&lt;BR /&gt;If these systems have a support contract in place, you will want to avail yourself of its benefits; to contact the HP customer support center.&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Mar 2007 10:49:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965127#M82592</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2007-03-20T10:49:15Z</dc:date>
    </item>
    <item>
      <title>Re: SYSGEN</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965128#M82593</link>
      <description>"sub process becomes non existent but when monitored using mon proc/topcpu that process is consuming 100% cpu usage."&lt;BR /&gt;&lt;BR /&gt;Is the process gone or isn't it ? Use sh proc/id=xxx to verify. Is mon proc/topcpu giving the same pid for the process ? What do you find in process accounting ? Operator log ? Audit trail ?&lt;BR /&gt;&lt;BR /&gt;Did you reboot after installing the patches ?&lt;BR /&gt;&lt;BR /&gt;Are all slots taken when you do show mem/slot ?&lt;BR /&gt;&lt;BR /&gt;Wim&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Mar 2007 10:58:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965128#M82593</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2007-03-20T10:58:43Z</dc:date>
    </item>
    <item>
      <title>Re: SYSGEN</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965129#M82594</link>
      <description>&lt;BR /&gt; Thanks to all for prompt replies.&lt;BR /&gt;&lt;BR /&gt;The problem is a suspended process is taking ~100% CPU usage.&lt;BR /&gt;&lt;BR /&gt;---&lt;BR /&gt;&lt;BR /&gt;See this thread for similar spinning process&lt;BR /&gt;discussion:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1105743" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1105743&lt;/A&gt;</description>
      <pubDate>Tue, 20 Mar 2007 11:01:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965129#M82594</guid>
      <dc:creator>Rob Young_4</dc:creator>
      <dc:date>2007-03-20T11:01:21Z</dc:date>
    </item>
    <item>
      <title>Re: SYSGEN</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965130#M82595</link>
      <description>&lt;BR /&gt;If it worked before the ECO and doesn't work after . . .&lt;BR /&gt;&lt;BR /&gt;Did you install the patch with /save_recovery? Type:&lt;BR /&gt;&lt;BR /&gt;$ PRODUCT SHOW RECOVERY_DATA&lt;BR /&gt;&lt;BR /&gt;You can use PRODUCT UNDO PATCH to restore your system to it's previous state, this can be a quick way to eliminate the ECO as the cause or confirm the cause issue.  &lt;BR /&gt;&lt;BR /&gt;I've used UNDO and it really annoys the Windows types.  &lt;BR /&gt;&lt;BR /&gt;Andy&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Mar 2007 11:02:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965130#M82595</guid>
      <dc:creator>Andy Bustamante</dc:creator>
      <dc:date>2007-03-20T11:02:22Z</dc:date>
    </item>
    <item>
      <title>Re: SYSGEN</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965131#M82596</link>
      <description>&amp;gt;&amp;gt;&amp;gt;&lt;BR /&gt;I've used UNDO and it really annoys the Windows types.&lt;BR /&gt;&amp;lt;&amp;lt;&amp;lt;&lt;BR /&gt;&lt;BR /&gt;Microsoft Windows XP restore points have provided this capability for some time now. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Mar 2007 14:12:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965131#M82596</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2007-03-20T14:12:35Z</dc:date>
    </item>
    <item>
      <title>Re: SYSGEN</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965132#M82597</link>
      <description>A truly suspeneded process should not be using the CPU.  Do SHOW SYSTEM and see what state the process is really in.  Also go into ANALYZE/SYSTEM and SHOW that PROCESS there.&lt;BR /&gt;&lt;BR /&gt;DCL's SHOW PROCESS command gives the highly-misleading message "process is suspended" if you use it on a process stuck in any of the MWAIT states (MUTEX, RW*) or for any process that has the delete-pending bit set.</description>
      <pubDate>Tue, 20 Mar 2007 16:23:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965132#M82597</guid>
      <dc:creator>Jess Goodman</dc:creator>
      <dc:date>2007-03-20T16:23:55Z</dc:date>
    </item>
    <item>
      <title>Re: SYSGEN</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965133#M82598</link>
      <description>&amp;gt;  Microsoft Windows XP restore points have provided this capability for some time now.&lt;BR /&gt;&lt;BR /&gt;For the whole system, yes. But even on Windows 2000 I was able to roll back (uninstall) a single patch.</description>
      <pubDate>Wed, 21 Mar 2007 00:42:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965133#M82598</guid>
      <dc:creator>Uwe Zessin</dc:creator>
      <dc:date>2007-03-21T00:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: SYSGEN</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965134#M82599</link>
      <description>Hi,&lt;BR /&gt;When I issue the command &lt;BR /&gt;$ sh proc/id=XXXXXXX  &lt;BR /&gt;The message appears suspended and after a while it becomes non existent but,when &lt;BR /&gt;$ sh sys&lt;BR /&gt;is issued that process is listing as current.&lt;BR /&gt;Each time the process becomes non-existent, anew sub-process is created.This event is repeating.&lt;BR /&gt;&lt;BR /&gt;Memory slots are not taken completely,there are free slots available.&lt;BR /&gt;I did install the patches using /sav qualifier.&lt;BR /&gt;&lt;BR /&gt;Once the processes attains 100% CPU usage,it goes into suspended mode....How does this happen?&lt;BR /&gt;I think for this reason other users are affected.&lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;BR /&gt;</description>
      <pubDate>Wed, 21 Mar 2007 04:59:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965134#M82599</guid>
      <dc:creator>FOX MULDER_2</dc:creator>
      <dc:date>2007-03-21T04:59:46Z</dc:date>
    </item>
    <item>
      <title>Re: SYSGEN</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965135#M82600</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;SHOW PROC/ID=xxx may issue a 'supended' message, if it can't get data from the remote process. Only SHOW SYS will tell the true status of that process.&lt;BR /&gt;&lt;BR /&gt;Do you have a system with more than 1 CPU ? Only in that case, you could see another process in a CUR state - otherwise, it will always be your process, in which you have issued the SHOW SYS command.&lt;BR /&gt;&lt;BR /&gt;Are you saying, that there is some process in your system, which seem to be creating sub-processes, which then consume 100% of CPU time and then disappear ?&lt;BR /&gt;&lt;BR /&gt;You can look at accounting to find out, why those subprocesses disappear (exit status) and how long they were active and how much CPU they consumed:&lt;BR /&gt;&lt;BR /&gt;$ ACC/FULL/SINCE=time/TYPE=PROCESS/PROCESS=SUBPROCESS&lt;BR /&gt;&lt;BR /&gt;Volker.</description>
      <pubDate>Wed, 21 Mar 2007 05:33:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965135#M82600</guid>
      <dc:creator>Volker Halle</dc:creator>
      <dc:date>2007-03-21T05:33:22Z</dc:date>
    </item>
    <item>
      <title>Re: SYSGEN</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965136#M82601</link>
      <description>What is "after a while" ?&lt;BR /&gt;I've seen process termination taking 5 seconds (due to cleaning up ?).&lt;BR /&gt;&lt;BR /&gt;Did you reboot ?&lt;BR /&gt;&lt;BR /&gt;Wim</description>
      <pubDate>Wed, 21 Mar 2007 05:34:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysgen/m-p/3965136#M82601</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2007-03-21T05:34:11Z</dc:date>
    </item>
  </channel>
</rss>

