summaryrefslogtreecommitdiff
path: root/tools.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2004-12-19 17:22:13 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2004-12-19 17:22:13 +0100
commitce8369251cf64919a7f1a8333201d87f92fb2f14 (patch)
tree4408fc6acf767b31a4b7ad395cc457567f331e58 /tools.c
parent1d3495a0f09b1949efbba553a3d2a152ad2be617 (diff)
downloadvdr-ce8369251cf64919a7f1a8333201d87f92fb2f14.tar.gz
vdr-ce8369251cf64919a7f1a8333201d87f92fb2f14.tar.bz2
Removed delay_ms(), using cCondWait::SleepMs() instead
Diffstat (limited to 'tools.c')
-rw-r--r--tools.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/tools.c b/tools.c
index 111b18c2..3776e6b9 100644
--- a/tools.c
+++ b/tools.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: tools.c 1.83 2004/12/19 16:08:50 kls Exp $
+ * $Id: tools.c 1.84 2004/12/19 17:19:46 kls Exp $
*/
#include "tools.h"
@@ -199,13 +199,6 @@ int time_ms(void)
return 0;
}
-void delay_ms(int ms)
-{
- int t0 = time_ms();
- while (time_ms() - t0 < ms)
- ;
-}
-
bool isnumber(const char *s)
{
if (!*s)