From 8632fb9a6e1f44e506375650d9061e211b746bd5 Mon Sep 17 00:00:00 2001 From: blueswir1 Date: Sun, 14 Sep 2008 13:59:34 +0000 Subject: [PATCH] qemu_next_deadline_dyntick is only used on Linux and Windows git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5210 c046a42c-6fe2-441c-8c8c-71466251a162 --- vl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vl.c b/vl.c index dd4ffcc8c3..d3da44de18 100644 --- a/vl.c +++ b/vl.c @@ -1350,6 +1350,7 @@ static int64_t qemu_next_deadline(void) return delta; } +#if defined(__linux__) || defined(_WIN32) static uint64_t qemu_next_deadline_dyntick(void) { int64_t delta; @@ -1372,6 +1373,7 @@ static uint64_t qemu_next_deadline_dyntick(void) return delta; } +#endif #ifndef _WIN32 -- 2.11.0