RE: [U2] [UV] Basic Program Scheduling Priority {Unclassified}

2007-01-18 Thread Gordon J Glorfield
Mike, We are running on Solaris and UniVerse 10.1.6 Pick format. Here are the results I got. It was on our development machine which is not quite as beefy as our production system. THE.START 60016 [16:40:16] NAP.END 60118 Average elapsed time of NAP 1 is 10.20 milliseconds Minimum

RE: RE: [U2] [UV] Basic Program Scheduling Priority

2007-01-16 Thread brian
: Re: [U2] [UV] Basic Program Scheduling Priority RQM releases the remainder of a process's timeslice on the CPU. Not 100% certain it works on Windows platforms. (Release QuantuM) PERFORM CHAP DOWN will reduce the process's priority. This works on all platforms. (Note: you can not CHAP UP

Re: [U2] [UV] Basic Program Scheduling Priority

2007-01-16 Thread MAJ Programming
, January 15, 2007 8:34 AM Subject: RE: [U2] [UV] Basic Program Scheduling Priority The RQM statement has not appeared in any universe documentation at least as far back v6. I actually had to locate some old prime manuals to find out what this was statement was all about. I recall reading some

RE: [U2] [UV] Basic Program Scheduling Priority

2007-01-15 Thread gerry-u2ug
it is in effect a NOP and doesn't actually do anything on any platform. Gerry -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ray Wurlod Sent: January 15, 2007 1:08 AM To: u2-users@listserver.u2ug.org Subject: Re: [U2] [UV] Basic Program Scheduling Priority RQM

RE: [U2] [UV] Basic Program Scheduling Priority

2007-01-15 Thread Timothy Snyder
I recall reading some blurb somewhere that although RQM is still supported by the universe compiler it is in effect a NOP and doesn't actually do anything on any platform. Not true. On UniData, the documentation for RQM includes the following: RQM is a synonym for the SLEEP function. For

RE: [U2] [UV] Basic Program Scheduling Priority

2007-01-15 Thread Perry Taylor
] [mailto:[EMAIL PROTECTED] On Behalf Of gerry-u2ug Sent: Monday, January 15, 2007 8:34 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] [UV] Basic Program Scheduling Priority The RQM statement has not appeared in any universe documentation at least as far back v6. I actually had to locate some old

Re: [U2] [UV] Basic Program Scheduling Priority

2007-01-14 Thread Martin Phillips
Hi Perry, Is anyone aware of way for a UniVerse BASIC program to change it's own processing priority? Something akin to getpriority()/setpriority() is C? Try the CHAP command. Martin Phillips, Ladybridge Systems Ltd --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe

RE: [U2] [UV] Basic Program Scheduling Priority {Unclassified}

2007-01-14 Thread HENDERSON MIKE, MR
] [UV] Basic Program Scheduling Priority Take a look at the NAP statement in UniVerse basic. I believe it takes tenths or milliseconds as a parameter. -Troy Perry Taylor wrote: I have several BASIC processes that are quite CPU intensive which I would like to slow themselves down a bit

Re: [U2] [UV] Basic Program Scheduling Priority

2007-01-14 Thread Ray Wurlod
RQM releases the remainder of a process's timeslice on the CPU. Not 100% certain it works on Windows platforms. (Release QuantuM) PERFORM CHAP DOWN will reduce the process's priority. This works on all platforms. (Note: you can not CHAP UP unless you have Administrator privileges.) Check

RE: [U2] [UV] Basic Program Scheduling Priority

2007-01-13 Thread Buss, Troy \(Logitek Systems\)
Take a look at the NAP statement in universe basic. I believe it takes tenths or milliseconds as a parameter. -Troy --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

Re: [U2] [UV] Basic Program Scheduling Priority

2007-01-13 Thread Allen Egerton
Perry Taylor wrote: I have several BASIC processes that are quite CPU intensive which I would like to slow themselves down a bit so the don't take so much processor time. Is anyone aware of way for a UniVerse BASIC program to change it's own processing priority? Something akin to