lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Asko Kauppi wrote:
> Does someone have a reason why VM based real multithreading would  
> have better performance?

For a start, it doesn't require any context switching - it doesn't need
to involve the kernel at all.  Of course, it also means you'll only be
able to take advantage of one CPU.

B.