Interpreter change

Ian Piumarta piumarta at speakeasy.net
Mon Apr 17 22:21:12 UTC 2006


On Apr 17, 2006, at 3:08 PM, John M McIntosh wrote:

> So is aioPoll() ever called with a non-zero value?

Yes.  The line after the code you quoted is

   dpy->ioRelinquishProcessorForMicroseconds(ms*1000);

which defers to the active display driver.  When the display is X11  
(for example), the above calls

static sqInt display_ioRelinquishProcessorForMicroseconds(sqInt  
microSeconds)
{
   aioPoll(handleEvents() ? 0 : microSeconds);
   return 0;
}

in sqUnixX11.c.

Cheers,
Ian




More information about the Vm-dev mailing list