diff options
author | Stefan Weil <sw@weilnetz.de> | 2012-11-04 21:42:08 +0100 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2012-11-10 12:28:52 +0000 |
commit | 253ecf83bcc658316bab3250401943d9b44c7898 (patch) | |
tree | 5bef49981c078b88ab837fc272e3546c6d95d90b /qemu-timer.c | |
parent | 1f202568e0553b416483e5993f1bde219c22cf72 (diff) |
qemu-timer: Fix compilation for non-POSIX hosts
A compiler warning is caused by the unused local function reinit_timers
on non-POSIX hosts. Include that function only for POSIX hosts.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'qemu-timer.c')
-rw-r--r-- | qemu-timer.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qemu-timer.c b/qemu-timer.c index 8d9cf38bb2..0d2bb94289 100644 --- a/qemu-timer.c +++ b/qemu-timer.c @@ -745,6 +745,7 @@ static void quit_timers(void) t->stop(t); } +#ifdef CONFIG_POSIX static void reinit_timers(void) { struct qemu_alarm_timer *t = alarm_timer; @@ -755,6 +756,7 @@ static void reinit_timers(void) } qemu_rearm_alarm_timer(t); } +#endif /* CONFIG_POSIX */ int init_timer_alarm(void) { |