]> git.proxmox.com Git - qemu.git/blame - qemu-timer.c
prep: Initialize PC speaker
[qemu.git] / qemu-timer.c
CommitLineData
db1a4972
PB
1/*
2 * QEMU System Emulator
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24
25#include "sysemu.h"
26#include "net.h"
27#include "monitor.h"
28#include "console.h"
29
30#include "hw/hw.h"
31
bff9f8bf
SW
32#include "qemu-timer.h"
33
44459349
JL
34#ifdef __FreeBSD__
35#include <sys/param.h>
36#endif
db1a4972 37
db1a4972 38#ifdef _WIN32
db1a4972
PB
39#include <mmsystem.h>
40#endif
41
db1a4972
PB
42/***********************************************************/
43/* timers */
44
45#define QEMU_CLOCK_REALTIME 0
46#define QEMU_CLOCK_VIRTUAL 1
47#define QEMU_CLOCK_HOST 2
48
49struct QEMUClock {
688eb389 50 QEMUTimer *active_timers;
691a0c9c
JK
51
52 NotifierList reset_notifiers;
53 int64_t last;
9a14b298
SW
54
55 int type;
56 bool enabled;
db1a4972
PB
57};
58
59struct QEMUTimer {
4a998740 60 int64_t expire_time; /* in nanoseconds */
9a14b298 61 QEMUClock *clock;
db1a4972
PB
62 QEMUTimerCB *cb;
63 void *opaque;
9a14b298
SW
64 QEMUTimer *next;
65 int scale;
db1a4972
PB
66};
67
68struct qemu_alarm_timer {
69 char const *name;
70 int (*start)(struct qemu_alarm_timer *t);
71 void (*stop)(struct qemu_alarm_timer *t);
f3fc6e2e 72 void (*rearm)(struct qemu_alarm_timer *t, int64_t nearest_delta_ns);
cd0544ee 73#if defined(__linux__)
cd0544ee 74 timer_t timer;
9a14b298 75 int fd;
cd0544ee
SW
76#elif defined(_WIN32)
77 HANDLE timer;
78#endif
5e1ec7b2
SW
79 bool expired;
80 bool pending;
db1a4972
PB
81};
82
83static struct qemu_alarm_timer *alarm_timer;
84
45c7b37f
SW
85static bool qemu_timer_expired_ns(QEMUTimer *timer_head, int64_t current_time)
86{
87 return timer_head && (timer_head->expire_time <= current_time);
88}
89
f3fc6e2e
PB
90static int64_t qemu_next_alarm_deadline(void)
91{
4ffd16fc 92 int64_t delta = INT64_MAX;
f3fc6e2e
PB
93 int64_t rtdelta;
94
4ffd16fc 95 if (!use_icount && vm_clock->enabled && vm_clock->active_timers) {
f3fc6e2e
PB
96 delta = vm_clock->active_timers->expire_time -
97 qemu_get_clock_ns(vm_clock);
f3fc6e2e 98 }
4ffd16fc 99 if (host_clock->enabled && host_clock->active_timers) {
f3fc6e2e
PB
100 int64_t hdelta = host_clock->active_timers->expire_time -
101 qemu_get_clock_ns(host_clock);
102 if (hdelta < delta) {
103 delta = hdelta;
104 }
105 }
4ffd16fc 106 if (rt_clock->enabled && rt_clock->active_timers) {
f3fc6e2e
PB
107 rtdelta = (rt_clock->active_timers->expire_time -
108 qemu_get_clock_ns(rt_clock));
109 if (rtdelta < delta) {
110 delta = rtdelta;
111 }
112 }
113
114 return delta;
115}
116
db1a4972
PB
117static void qemu_rearm_alarm_timer(struct qemu_alarm_timer *t)
118{
f3fc6e2e 119 int64_t nearest_delta_ns;
f3fc6e2e
PB
120 if (!rt_clock->active_timers &&
121 !vm_clock->active_timers &&
122 !host_clock->active_timers) {
db1a4972 123 return;
f3fc6e2e
PB
124 }
125 nearest_delta_ns = qemu_next_alarm_deadline();
126 t->rearm(t, nearest_delta_ns);
db1a4972
PB
127}
128
9c13246a
PB
129/* TODO: MIN_TIMER_REARM_NS should be optimized */
130#define MIN_TIMER_REARM_NS 250000
db1a4972
PB
131
132#ifdef _WIN32
133
2f9cba0c
SW
134static int mm_start_timer(struct qemu_alarm_timer *t);
135static void mm_stop_timer(struct qemu_alarm_timer *t);
f3fc6e2e 136static void mm_rearm_timer(struct qemu_alarm_timer *t, int64_t delta);
2f9cba0c 137
db1a4972
PB
138static int win32_start_timer(struct qemu_alarm_timer *t);
139static void win32_stop_timer(struct qemu_alarm_timer *t);
f3fc6e2e 140static void win32_rearm_timer(struct qemu_alarm_timer *t, int64_t delta);
db1a4972
PB
141
142#else
143
144static int unix_start_timer(struct qemu_alarm_timer *t);
145static void unix_stop_timer(struct qemu_alarm_timer *t);
f3fc6e2e 146static void unix_rearm_timer(struct qemu_alarm_timer *t, int64_t delta);
db1a4972
PB
147
148#ifdef __linux__
149
150static int dynticks_start_timer(struct qemu_alarm_timer *t);
151static void dynticks_stop_timer(struct qemu_alarm_timer *t);
f3fc6e2e 152static void dynticks_rearm_timer(struct qemu_alarm_timer *t, int64_t delta);
db1a4972 153
db1a4972
PB
154#endif /* __linux__ */
155
156#endif /* _WIN32 */
157
db1a4972
PB
158static struct qemu_alarm_timer alarm_timers[] = {
159#ifndef _WIN32
160#ifdef __linux__
161 {"dynticks", dynticks_start_timer,
cd0544ee 162 dynticks_stop_timer, dynticks_rearm_timer},
db1a4972 163#endif
84682834 164 {"unix", unix_start_timer, unix_stop_timer, unix_rearm_timer},
db1a4972 165#else
cca5de73 166 {"mmtimer", mm_start_timer, mm_stop_timer, mm_rearm_timer},
cd0544ee 167 {"dynticks", win32_start_timer, win32_stop_timer, win32_rearm_timer},
db1a4972
PB
168#endif
169 {NULL, }
170};
171
172static void show_available_alarms(void)
173{
174 int i;
175
176 printf("Available alarm timers, in order of precedence:\n");
177 for (i = 0; alarm_timers[i].name; i++)
178 printf("%s\n", alarm_timers[i].name);
179}
180
181void configure_alarms(char const *opt)
182{
183 int i;
184 int cur = 0;
185 int count = ARRAY_SIZE(alarm_timers) - 1;
186 char *arg;
187 char *name;
188 struct qemu_alarm_timer tmp;
189
190 if (!strcmp(opt, "?")) {
191 show_available_alarms();
192 exit(0);
193 }
194
7267c094 195 arg = g_strdup(opt);
db1a4972
PB
196
197 /* Reorder the array */
198 name = strtok(arg, ",");
199 while (name) {
200 for (i = 0; i < count && alarm_timers[i].name; i++) {
201 if (!strcmp(alarm_timers[i].name, name))
202 break;
203 }
204
205 if (i == count) {
206 fprintf(stderr, "Unknown clock %s\n", name);
207 goto next;
208 }
209
210 if (i < cur)
211 /* Ignore */
212 goto next;
213
214 /* Swap */
215 tmp = alarm_timers[i];
216 alarm_timers[i] = alarm_timers[cur];
217 alarm_timers[cur] = tmp;
218
219 cur++;
220next:
221 name = strtok(NULL, ",");
222 }
223
7267c094 224 g_free(arg);
db1a4972
PB
225
226 if (cur) {
227 /* Disable remaining timers */
228 for (i = cur; i < count; i++)
229 alarm_timers[i].name = NULL;
230 } else {
231 show_available_alarms();
232 exit(1);
233 }
234}
235
db1a4972
PB
236QEMUClock *rt_clock;
237QEMUClock *vm_clock;
238QEMUClock *host_clock;
239
db1a4972
PB
240static QEMUClock *qemu_new_clock(int type)
241{
242 QEMUClock *clock;
691a0c9c 243
7267c094 244 clock = g_malloc0(sizeof(QEMUClock));
db1a4972 245 clock->type = type;
5e1ec7b2 246 clock->enabled = true;
2ff68d07 247 clock->last = INT64_MIN;
691a0c9c 248 notifier_list_init(&clock->reset_notifiers);
db1a4972
PB
249 return clock;
250}
251
5e1ec7b2 252void qemu_clock_enable(QEMUClock *clock, bool enabled)
db1a4972 253{
fbdc14eb 254 bool old = clock->enabled;
db1a4972 255 clock->enabled = enabled;
fbdc14eb
PB
256 if (enabled && !old) {
257 qemu_rearm_alarm_timer(alarm_timer);
258 }
db1a4972
PB
259}
260
dc2dfcf0
PB
261int64_t qemu_clock_has_timers(QEMUClock *clock)
262{
263 return !!clock->active_timers;
264}
265
266int64_t qemu_clock_expired(QEMUClock *clock)
267{
268 return (clock->active_timers &&
269 clock->active_timers->expire_time < qemu_get_clock_ns(clock));
270}
271
272int64_t qemu_clock_deadline(QEMUClock *clock)
273{
274 /* To avoid problems with overflow limit this to 2^32. */
275 int64_t delta = INT32_MAX;
276
277 if (clock->active_timers) {
278 delta = clock->active_timers->expire_time - qemu_get_clock_ns(clock);
279 }
280 if (delta < 0) {
281 delta = 0;
282 }
283 return delta;
284}
285
4a998740
PB
286QEMUTimer *qemu_new_timer(QEMUClock *clock, int scale,
287 QEMUTimerCB *cb, void *opaque)
db1a4972
PB
288{
289 QEMUTimer *ts;
290
7267c094 291 ts = g_malloc0(sizeof(QEMUTimer));
db1a4972
PB
292 ts->clock = clock;
293 ts->cb = cb;
294 ts->opaque = opaque;
4a998740 295 ts->scale = scale;
db1a4972
PB
296 return ts;
297}
298
299void qemu_free_timer(QEMUTimer *ts)
300{
7267c094 301 g_free(ts);
db1a4972
PB
302}
303
304/* stop a timer, but do not dealloc it */
305void qemu_del_timer(QEMUTimer *ts)
306{
307 QEMUTimer **pt, *t;
308
309 /* NOTE: this code must be signal safe because
310 qemu_timer_expired() can be called from a signal. */
688eb389 311 pt = &ts->clock->active_timers;
db1a4972
PB
312 for(;;) {
313 t = *pt;
314 if (!t)
315 break;
316 if (t == ts) {
317 *pt = t->next;
318 break;
319 }
320 pt = &t->next;
321 }
322}
323
324/* modify the current timer so that it will be fired when current_time
325 >= expire_time. The corresponding callback will be called. */
2ff68d07 326void qemu_mod_timer_ns(QEMUTimer *ts, int64_t expire_time)
db1a4972
PB
327{
328 QEMUTimer **pt, *t;
329
330 qemu_del_timer(ts);
331
332 /* add the timer in the sorted list */
333 /* NOTE: this code must be signal safe because
334 qemu_timer_expired() can be called from a signal. */
688eb389 335 pt = &ts->clock->active_timers;
db1a4972
PB
336 for(;;) {
337 t = *pt;
45c7b37f 338 if (!qemu_timer_expired_ns(t, expire_time)) {
db1a4972 339 break;
45c7b37f 340 }
db1a4972
PB
341 pt = &t->next;
342 }
343 ts->expire_time = expire_time;
344 ts->next = *pt;
345 *pt = ts;
346
347 /* Rearm if necessary */
688eb389 348 if (pt == &ts->clock->active_timers) {
db1a4972
PB
349 if (!alarm_timer->pending) {
350 qemu_rearm_alarm_timer(alarm_timer);
351 }
352 /* Interrupt execution to force deadline recalculation. */
ab33fcda
PB
353 qemu_clock_warp(ts->clock);
354 if (use_icount) {
db1a4972 355 qemu_notify_event();
ab33fcda 356 }
db1a4972
PB
357 }
358}
359
4a998740
PB
360void qemu_mod_timer(QEMUTimer *ts, int64_t expire_time)
361{
362 qemu_mod_timer_ns(ts, expire_time * ts->scale);
363}
364
5e1ec7b2 365bool qemu_timer_pending(QEMUTimer *ts)
db1a4972
PB
366{
367 QEMUTimer *t;
688eb389 368 for (t = ts->clock->active_timers; t != NULL; t = t->next) {
5e1ec7b2
SW
369 if (t == ts) {
370 return true;
371 }
db1a4972 372 }
5e1ec7b2 373 return false;
db1a4972
PB
374}
375
5e1ec7b2 376bool qemu_timer_expired(QEMUTimer *timer_head, int64_t current_time)
db1a4972 377{
45c7b37f 378 return qemu_timer_expired_ns(timer_head, current_time * timer_head->scale);
db1a4972
PB
379}
380
8156be56 381void qemu_run_timers(QEMUClock *clock)
db1a4972
PB
382{
383 QEMUTimer **ptimer_head, *ts;
384 int64_t current_time;
385
386 if (!clock->enabled)
387 return;
388
4a998740 389 current_time = qemu_get_clock_ns(clock);
688eb389 390 ptimer_head = &clock->active_timers;
db1a4972
PB
391 for(;;) {
392 ts = *ptimer_head;
45c7b37f 393 if (!qemu_timer_expired_ns(ts, current_time)) {
db1a4972 394 break;
45c7b37f 395 }
db1a4972
PB
396 /* remove timer from the list before calling the callback */
397 *ptimer_head = ts->next;
398 ts->next = NULL;
399
400 /* run the callback (the timer list can be modified) */
401 ts->cb(ts->opaque);
402 }
403}
404
db1a4972
PB
405int64_t qemu_get_clock_ns(QEMUClock *clock)
406{
691a0c9c
JK
407 int64_t now, last;
408
db1a4972
PB
409 switch(clock->type) {
410 case QEMU_CLOCK_REALTIME:
411 return get_clock();
412 default:
413 case QEMU_CLOCK_VIRTUAL:
414 if (use_icount) {
415 return cpu_get_icount();
416 } else {
417 return cpu_get_clock();
418 }
419 case QEMU_CLOCK_HOST:
691a0c9c
JK
420 now = get_clock_realtime();
421 last = clock->last;
422 clock->last = now;
423 if (now < last) {
424 notifier_list_notify(&clock->reset_notifiers, &now);
425 }
426 return now;
db1a4972
PB
427 }
428}
429
691a0c9c
JK
430void qemu_register_clock_reset_notifier(QEMUClock *clock, Notifier *notifier)
431{
432 notifier_list_add(&clock->reset_notifiers, notifier);
433}
434
435void qemu_unregister_clock_reset_notifier(QEMUClock *clock, Notifier *notifier)
436{
31552529 437 notifier_remove(notifier);
691a0c9c
JK
438}
439
db1a4972
PB
440void init_clocks(void)
441{
db1a4972
PB
442 rt_clock = qemu_new_clock(QEMU_CLOCK_REALTIME);
443 vm_clock = qemu_new_clock(QEMU_CLOCK_VIRTUAL);
444 host_clock = qemu_new_clock(QEMU_CLOCK_HOST);
db1a4972
PB
445}
446
2ff68d07 447uint64_t qemu_timer_expire_time_ns(QEMUTimer *ts)
db1a4972 448{
2ff68d07 449 return qemu_timer_pending(ts) ? ts->expire_time : -1;
db1a4972
PB
450}
451
db1a4972
PB
452void qemu_run_all_timers(void)
453{
5e1ec7b2 454 alarm_timer->pending = false;
ca5a2a4b 455
158fd3ce
PP
456 /* vm time timers */
457 qemu_run_timers(vm_clock);
458 qemu_run_timers(rt_clock);
459 qemu_run_timers(host_clock);
460
db1a4972
PB
461 /* rearm timer, if not periodic */
462 if (alarm_timer->expired) {
5e1ec7b2 463 alarm_timer->expired = false;
db1a4972
PB
464 qemu_rearm_alarm_timer(alarm_timer);
465 }
db1a4972
PB
466}
467
468#ifdef _WIN32
68c23e55 469static void CALLBACK host_alarm_handler(PVOID lpParam, BOOLEAN unused)
db1a4972
PB
470#else
471static void host_alarm_handler(int host_signum)
472#endif
473{
474 struct qemu_alarm_timer *t = alarm_timer;
475 if (!t)
476 return;
477
8205199d
SW
478 t->expired = true;
479 t->pending = true;
480 qemu_notify_event();
db1a4972
PB
481}
482
4c3d45eb
PB
483#if defined(__linux__)
484
d25f89c9
JK
485#include "compatfd.h"
486
db1a4972
PB
487static int dynticks_start_timer(struct qemu_alarm_timer *t)
488{
489 struct sigevent ev;
490 timer_t host_timer;
491 struct sigaction act;
492
493 sigfillset(&act.sa_mask);
494 act.sa_flags = 0;
495 act.sa_handler = host_alarm_handler;
496
497 sigaction(SIGALRM, &act, NULL);
498
499 /*
500 * Initialize ev struct to 0 to avoid valgrind complaining
501 * about uninitialized data in timer_create call
502 */
503 memset(&ev, 0, sizeof(ev));
504 ev.sigev_value.sival_int = 0;
505 ev.sigev_notify = SIGEV_SIGNAL;
d25f89c9
JK
506#ifdef SIGEV_THREAD_ID
507 if (qemu_signalfd_available()) {
508 ev.sigev_notify = SIGEV_THREAD_ID;
509 ev._sigev_un._tid = qemu_get_thread_id();
510 }
511#endif /* SIGEV_THREAD_ID */
db1a4972
PB
512 ev.sigev_signo = SIGALRM;
513
514 if (timer_create(CLOCK_REALTIME, &ev, &host_timer)) {
515 perror("timer_create");
db1a4972
PB
516 return -1;
517 }
518
cd0544ee 519 t->timer = host_timer;
db1a4972
PB
520
521 return 0;
522}
523
524static void dynticks_stop_timer(struct qemu_alarm_timer *t)
525{
cd0544ee 526 timer_t host_timer = t->timer;
db1a4972
PB
527
528 timer_delete(host_timer);
529}
530
f3fc6e2e
PB
531static void dynticks_rearm_timer(struct qemu_alarm_timer *t,
532 int64_t nearest_delta_ns)
db1a4972 533{
cd0544ee 534 timer_t host_timer = t->timer;
db1a4972 535 struct itimerspec timeout;
9c13246a 536 int64_t current_ns;
db1a4972 537
4c3d45eb
PB
538 if (nearest_delta_ns < MIN_TIMER_REARM_NS)
539 nearest_delta_ns = MIN_TIMER_REARM_NS;
db1a4972
PB
540
541 /* check whether a timer is already running */
542 if (timer_gettime(host_timer, &timeout)) {
543 perror("gettime");
544 fprintf(stderr, "Internal timer error: aborting\n");
545 exit(1);
546 }
9c13246a
PB
547 current_ns = timeout.it_value.tv_sec * 1000000000LL + timeout.it_value.tv_nsec;
548 if (current_ns && current_ns <= nearest_delta_ns)
db1a4972
PB
549 return;
550
551 timeout.it_interval.tv_sec = 0;
552 timeout.it_interval.tv_nsec = 0; /* 0 for one-shot timer */
9c13246a
PB
553 timeout.it_value.tv_sec = nearest_delta_ns / 1000000000;
554 timeout.it_value.tv_nsec = nearest_delta_ns % 1000000000;
db1a4972
PB
555 if (timer_settime(host_timer, 0 /* RELATIVE */, &timeout, NULL)) {
556 perror("settime");
557 fprintf(stderr, "Internal timer error: aborting\n");
558 exit(1);
559 }
560}
561
562#endif /* defined(__linux__) */
563
f26e5a54
SW
564#if !defined(_WIN32)
565
db1a4972
PB
566static int unix_start_timer(struct qemu_alarm_timer *t)
567{
568 struct sigaction act;
db1a4972
PB
569
570 /* timer signal */
571 sigfillset(&act.sa_mask);
572 act.sa_flags = 0;
573 act.sa_handler = host_alarm_handler;
574
575 sigaction(SIGALRM, &act, NULL);
84682834
PB
576 return 0;
577}
db1a4972 578
f3fc6e2e
PB
579static void unix_rearm_timer(struct qemu_alarm_timer *t,
580 int64_t nearest_delta_ns)
84682834
PB
581{
582 struct itimerval itv;
84682834 583 int err;
db1a4972 584
84682834
PB
585 if (nearest_delta_ns < MIN_TIMER_REARM_NS)
586 nearest_delta_ns = MIN_TIMER_REARM_NS;
587
588 itv.it_interval.tv_sec = 0;
589 itv.it_interval.tv_usec = 0; /* 0 for one-shot timer */
590 itv.it_value.tv_sec = nearest_delta_ns / 1000000000;
591 itv.it_value.tv_usec = (nearest_delta_ns % 1000000000) / 1000;
592 err = setitimer(ITIMER_REAL, &itv, NULL);
593 if (err) {
594 perror("setitimer");
595 fprintf(stderr, "Internal timer error: aborting\n");
596 exit(1);
597 }
db1a4972
PB
598}
599
600static void unix_stop_timer(struct qemu_alarm_timer *t)
601{
602 struct itimerval itv;
603
604 memset(&itv, 0, sizeof(itv));
605 setitimer(ITIMER_REAL, &itv, NULL);
606}
607
608#endif /* !defined(_WIN32) */
609
610
611#ifdef _WIN32
612
2f9cba0c
SW
613static MMRESULT mm_timer;
614static unsigned mm_period;
615
616static void CALLBACK mm_alarm_handler(UINT uTimerID, UINT uMsg,
617 DWORD_PTR dwUser, DWORD_PTR dw1,
618 DWORD_PTR dw2)
619{
620 struct qemu_alarm_timer *t = alarm_timer;
621 if (!t) {
622 return;
623 }
8205199d
SW
624 t->expired = true;
625 t->pending = true;
626 qemu_notify_event();
2f9cba0c
SW
627}
628
629static int mm_start_timer(struct qemu_alarm_timer *t)
630{
631 TIMECAPS tc;
2f9cba0c
SW
632
633 memset(&tc, 0, sizeof(tc));
634 timeGetDevCaps(&tc, sizeof(tc));
635
636 mm_period = tc.wPeriodMin;
637 timeBeginPeriod(mm_period);
638
2f9cba0c
SW
639 mm_timer = timeSetEvent(1, /* interval (ms) */
640 mm_period, /* resolution */
641 mm_alarm_handler, /* function */
642 (DWORD_PTR)t, /* parameter */
8205199d 643 TIME_ONESHOT | TIME_CALLBACK_FUNCTION);
2f9cba0c
SW
644
645 if (!mm_timer) {
646 fprintf(stderr, "Failed to initialize win32 alarm timer: %ld\n",
647 GetLastError());
648 timeEndPeriod(mm_period);
649 return -1;
650 }
651
652 return 0;
653}
654
655static void mm_stop_timer(struct qemu_alarm_timer *t)
656{
657 timeKillEvent(mm_timer);
658 timeEndPeriod(mm_period);
659}
660
f3fc6e2e 661static void mm_rearm_timer(struct qemu_alarm_timer *t, int64_t delta)
2f9cba0c 662{
5bfb723f 663 int64_t nearest_delta_ms = delta / 1000000;
2f9cba0c
SW
664 if (nearest_delta_ms < 1) {
665 nearest_delta_ms = 1;
666 }
5bfb723f
SS
667 /* UINT_MAX can be 32 bit */
668 if (nearest_delta_ms > UINT_MAX) {
669 nearest_delta_ms = UINT_MAX;
670 }
f3fc6e2e
PB
671
672 timeKillEvent(mm_timer);
5bfb723f 673 mm_timer = timeSetEvent((unsigned int) nearest_delta_ms,
2f9cba0c
SW
674 mm_period,
675 mm_alarm_handler,
676 (DWORD_PTR)t,
677 TIME_ONESHOT | TIME_CALLBACK_FUNCTION);
678
679 if (!mm_timer) {
680 fprintf(stderr, "Failed to re-arm win32 alarm timer %ld\n",
681 GetLastError());
682
683 timeEndPeriod(mm_period);
684 exit(1);
685 }
686}
687
db1a4972
PB
688static int win32_start_timer(struct qemu_alarm_timer *t)
689{
68c23e55
PB
690 HANDLE hTimer;
691 BOOLEAN success;
692
693 /* If you call ChangeTimerQueueTimer on a one-shot timer (its period
694 is zero) that has already expired, the timer is not updated. Since
695 creating a new timer is relatively expensive, set a bogus one-hour
696 interval in the dynticks case. */
697 success = CreateTimerQueueTimer(&hTimer,
698 NULL,
699 host_alarm_handler,
700 t,
701 1,
8205199d 702 3600000,
68c23e55
PB
703 WT_EXECUTEINTIMERTHREAD);
704
705 if (!success) {
db1a4972
PB
706 fprintf(stderr, "Failed to initialize win32 alarm timer: %ld\n",
707 GetLastError());
db1a4972
PB
708 return -1;
709 }
710
cd0544ee 711 t->timer = hTimer;
db1a4972
PB
712 return 0;
713}
714
715static void win32_stop_timer(struct qemu_alarm_timer *t)
716{
cd0544ee 717 HANDLE hTimer = t->timer;
db1a4972 718
68c23e55
PB
719 if (hTimer) {
720 DeleteTimerQueueTimer(NULL, hTimer, NULL);
721 }
db1a4972
PB
722}
723
f3fc6e2e
PB
724static void win32_rearm_timer(struct qemu_alarm_timer *t,
725 int64_t nearest_delta_ns)
db1a4972 726{
cd0544ee 727 HANDLE hTimer = t->timer;
5bfb723f 728 int64_t nearest_delta_ms;
68c23e55 729 BOOLEAN success;
db1a4972 730
5bfb723f 731 nearest_delta_ms = nearest_delta_ns / 1000000;
cfced5b2
PB
732 if (nearest_delta_ms < 1) {
733 nearest_delta_ms = 1;
734 }
5bfb723f
SS
735 /* ULONG_MAX can be 32 bit */
736 if (nearest_delta_ms > ULONG_MAX) {
737 nearest_delta_ms = ULONG_MAX;
738 }
68c23e55
PB
739 success = ChangeTimerQueueTimer(NULL,
740 hTimer,
5bfb723f 741 (unsigned long) nearest_delta_ms,
68c23e55 742 3600000);
db1a4972 743
68c23e55
PB
744 if (!success) {
745 fprintf(stderr, "Failed to rearm win32 alarm timer: %ld\n",
746 GetLastError());
747 exit(-1);
db1a4972 748 }
68c23e55 749
db1a4972
PB
750}
751
752#endif /* _WIN32 */
753
4260a739
PB
754static void quit_timers(void)
755{
756 struct qemu_alarm_timer *t = alarm_timer;
757 alarm_timer = NULL;
758 t->stop(t);
759}
760
db1a4972
PB
761int init_timer_alarm(void)
762{
763 struct qemu_alarm_timer *t = NULL;
764 int i, err = -1;
765
766 for (i = 0; alarm_timers[i].name; i++) {
767 t = &alarm_timers[i];
768
769 err = t->start(t);
770 if (!err)
771 break;
772 }
773
774 if (err) {
775 err = -ENOENT;
776 goto fail;
777 }
778
779 /* first event is at time 0 */
4260a739 780 atexit(quit_timers);
5e1ec7b2 781 t->pending = true;
db1a4972 782 alarm_timer = t;
db1a4972
PB
783
784 return 0;
785
786fail:
787 return err;
788}
789