lua-users home
lua-l archive

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


The most portable system/kernel call would be select(0, NULL, NULL,
NULL, timeout); Most Systems support this. Currently this is neither
the way luaposix, nor socket.sleep does it.
But since you target for a Linux variant anyway, its likely fully
posix compatble, so why not use luaposix?

On Fri, Feb 18, 2011 at 2:29 PM, Gilles Ganault <gilles.ganault@free.fr> wrote:
> On Fri, 18 Feb 2011 14:21:14 +0100, Michal Kolodziejczyk <miko@wp.pl>
> wrote:
>>I would use socket.sleep() if you have it available (and probably you do).
>>The "most portable" from the POV of the lua code is
>>os.execute("/usr/bin/sleep 0.2"), but you need /usr/bin/sleep installed
>>on both systems (which you probably have).
>
> Cool, /bin/sleep is indeed available on the appliance. os.execute()
> works fine.
>
> Thank you.
>
>
>