summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-06-14 12:34:51 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-06-14 12:34:51 +0000
commit50c1ff2b2f455c919f4aaf8e20c2d7697ac4bb7d (patch)
tree873138f18a222972c45659d67f24a13c70b93879
parent5fbeb6de7584078f4986b0137cfdf146f9de1c02 (diff)
downloadrockbox-50c1ff2b2f455c919f4aaf8e20c2d7697ac4bb7d.tar.gz
rockbox-50c1ff2b2f455c919f4aaf8e20c2d7697ac4bb7d.zip
removed sleep.c, the sleep() code was moved into thread.c as the
functionality is so closely related git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1003 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--uisimulator/x11/Makefile2
-rw-r--r--uisimulator/x11/sleep.c28
2 files changed, 1 insertions, 29 deletions
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile
index cf84f2be61..0aac0a0783 100644
--- a/uisimulator/x11/Makefile
+++ b/uisimulator/x11/Makefile
@@ -77,7 +77,7 @@ ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP)
77endif 77endif
78 78
79SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c mpeg.c \ 79SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c mpeg.c \
80 button-x11.c io.c sleep.c thread.c $(APPS) $(FIRMSRCS) 80 button-x11.c io.c thread.c $(APPS) $(FIRMSRCS)
81 81
82ifdef MPEG_PLAY 82ifdef MPEG_PLAY
83 SRCS += mpegplay.c oss_sound.c bit.c decoder.c fixed.c frame.c huffman.c layer12.c layer3.c stream.c synth.c timer.c version.c 83 SRCS += mpegplay.c oss_sound.c bit.c decoder.c fixed.c frame.c huffman.c layer12.c layer3.c stream.c synth.c timer.c version.c
diff --git a/uisimulator/x11/sleep.c b/uisimulator/x11/sleep.c
deleted file mode 100644
index b888664122..0000000000
--- a/uisimulator/x11/sleep.c
+++ /dev/null
@@ -1,28 +0,0 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2002 by Daniel Stenberg <daniel@haxx.se>
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19
20#include "kernel.h"
21#include <poll.h>
22
23/* ticks is HZ per second */
24void x11_sleep(int ticks)
25{
26 /* portable subsecond "sleep" */
27 poll((void *)0, 0, ticks * 1000/HZ);
28}