lua-users home
lua-l archive

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


I think you missed the "non busy" part.

There's no built in sleep but it should be trivial to make a binding for it. I've also seen people use select() from luasocket for this purpose.

Sent from my Verizon Wireless BlackBerry


From: Gabriel Duarte <confusosk8@gmail.com>
Sender: <lua-l-bounces@lists.lua.org>
Date: Wed, 13 Oct 2010 14:26:26 -0300
To: Lua mailing list<lua-l@lists.lua.org>
ReplyTo: Lua mailing list <lua-l@lists.lua.org>
Subject: Re: Sleep

Try out

function sleep(length)
    local start = os.clock()
   
    while os.clock() - start < length do end
end

On Wed, Oct 13, 2010 at 2:20 PM, Henning Diedrich <hd2010@eonblast.com> wrote:
Hi list,

is there a sleep function that is
- non-busy
- allows for ctrl-C
- doesn't get stuck
- does not require a C extension

I tried busy, system call and sockets from http://lua-users.org/wiki/SleepFunction for the above reasons they don't work for me.

Is there a rock offering a simple C-programmed sleep?

It's for a very simple game world tick with the focus on demonstrating (other) principles, and ease of getting to run oneself.

Thanks,
Henning



--
Gabriel Duarte
Linux User #471185
Rio de Janeiro - RJ
http://w3.impa.br/~gabrield

Phones:
(55) (21) 9463-7760  -> Mobile
(55) (21) 2464-9302  -> Home
(55) (21) 2529-5080  -> Work