* [Qemu-trivial] [PATCH] qemu-timer: Fix compilation for non-POSIX hosts
@ 2012-11-04 20:42 Stefan Weil
2012-11-10 19:27 ` [Qemu-trivial] [Qemu-devel] " Blue Swirl
0 siblings, 1 reply; 2+ messages in thread
From: Stefan Weil @ 2012-11-04 20:42 UTC (permalink / raw)
To: qemu-trivial; +Cc: Paolo Bonzini, Anthony Liguori, qemu-devel, Stefan Weil
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>
---
qemu-timer.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/qemu-timer.c b/qemu-timer.c
index 8d9cf38..0d2bb94 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)
{
--
1.7.10.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Qemu-trivial] [Qemu-devel] [PATCH] qemu-timer: Fix compilation for non-POSIX hosts
2012-11-04 20:42 [Qemu-trivial] [PATCH] qemu-timer: Fix compilation for non-POSIX hosts Stefan Weil
@ 2012-11-10 19:27 ` Blue Swirl
0 siblings, 0 replies; 2+ messages in thread
From: Blue Swirl @ 2012-11-10 19:27 UTC (permalink / raw)
To: Stefan Weil; +Cc: qemu-trivial, Paolo Bonzini, Anthony Liguori, qemu-devel
Thanks, applied.
On Sun, Nov 4, 2012 at 8:42 PM, Stefan Weil <sw@weilnetz.de> wrote:
> 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>
> ---
> qemu-timer.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/qemu-timer.c b/qemu-timer.c
> index 8d9cf38..0d2bb94 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)
> {
> --
> 1.7.10.4
>
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-11-10 19:28 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-04 20:42 [Qemu-trivial] [PATCH] qemu-timer: Fix compilation for non-POSIX hosts Stefan Weil
2012-11-10 19:27 ` [Qemu-trivial] [Qemu-devel] " Blue Swirl
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).