From: Tigran A.
Subject: setting Thread Priority
Date: 
Message-ID: <Pine.SGI.4.10.10002171852270.6038715-100000@mail1.ats.rochester.edu>
Hi,

I have a question. How can I set the 
priority of my program to highest
through LISP code? I am using CL
and the OS is UNIX. 

You can set priority in Win98 
for example in Visual Basic
using the API call SetThreadPriority
from kernel32.dll

So, my question how can I tell the
LISP interpretor to allocate more
more memory and CPU time to my
program?

Thank you in advance.

Tigran

ps PLEASE reply to my email address also.
From: Robert Monfera
Subject: Re: setting Thread Priority
Date: 
Message-ID: <38ACB2A6.ED516266@fisec.com>
"Tigran A." wrote:
>
> Hi,
>
> I have a question. How can I set the
> priority of my program to highest
> through LISP code? I am using CL
> and the OS is UNIX.

It is implementation-dependent (as would be the case with different
Basic environments if there were several of them, but even that single
dominant one is one too many), and only applicable when there is support
for multiprocessing.  Refer to the documentation that came with your
Lisp.

Robert