| Submitter | Stefan Weil |
|---|---|
| Date | Nov. 4, 2012, 8:42 p.m. |
| Message ID | <1352061728-30617-1-git-send-email-sw@weilnetz.de> |
| Download | mbox | patch |
| Permalink | /patch/197095/ |
| State | Accepted |
| Headers | show |
Comments
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 > >
Patch
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) {
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(+)