diff options
| author | Dan Everton <dan@iocaine.org> | 2006-03-29 12:11:28 +0000 |
|---|---|---|
| committer | Dan Everton <dan@iocaine.org> | 2006-03-29 12:11:28 +0000 |
| commit | d0c65f76b2d19eef4f0f69da09900a7d6bc497d3 (patch) | |
| tree | 3f29a6f6f6b428add1f2a8aa671f635bd1395715 | |
| parent | e7a6749c41b947a70d917a9da3390a4edf33aa1e (diff) | |
| download | rockbox-d0c65f76b2d19eef4f0f69da09900a7d6bc497d3.zip rockbox-d0c65f76b2d19eef4f0f69da09900a7d6bc497d3.tar.gz rockbox-d0c65f76b2d19eef4f0f69da09900a7d6bc497d3.tar.bz2 rockbox-d0c65f76b2d19eef4f0f69da09900a7d6bc497d3.tar.xz | |
Use correct sleep function in simulator queue wait.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9343 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | uisimulator/sdl/kernel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uisimulator/sdl/kernel.c b/uisimulator/sdl/kernel.c index 0db7546..c17dc49 100644 --- a/uisimulator/sdl/kernel.c +++ b/uisimulator/sdl/kernel.c @@ -59,7 +59,7 @@ void queue_wait_w_tmo(struct event_queue *q, struct event *ev, int ticks) while(q->read == q->write && TIME_BEFORE( current_tick, timeout )) { - sleep(1); + sim_sleep(1); } if(q->read != q->write) |