diff options
author | Alex Bligh <alex@alex.org.uk> | 2013-08-21 16:02:59 +0100 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2013-08-22 19:10:55 +0200 |
commit | 6d327171551a12b937c5718073b9848d0274c74d (patch) | |
tree | 631ca2a4105f40301da86bdbf0ba08fc1f214ba8 /vl.c | |
parent | 54904d2a9165bd34dee0f076826b308be2498fe0 (diff) | |
download | qemu-6d327171551a12b937c5718073b9848d0274c74d.tar.gz qemu-6d327171551a12b937c5718073b9848d0274c74d.tar.bz2 qemu-6d327171551a12b937c5718073b9848d0274c74d.zip |
aio / timers: Remove alarm timers
Remove alarm timers from qemu-timers.c now we use g_poll / ppoll
instead.
Signed-off-by: Alex Bligh <alex@alex.org.uk>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'vl.c')
-rw-r--r-- | vl.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -3714,7 +3714,9 @@ int main(int argc, char **argv, char **envp) old_param = 1; break; case QEMU_OPTION_clock: - configure_alarms(optarg); + /* Clock options no longer exist. Keep this option for + * backward compatibility. + */ break; case QEMU_OPTION_startdate: configure_rtc_date_offset(optarg, 1); |