qemu-timer.c 17.7 KB
Newer Older
P
Paolo Bonzini 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * QEMU System Emulator
 *
 * Copyright (c) 2003-2008 Fabrice Bellard
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

P
Peter Maydell 已提交
25
#include "qemu/osdep.h"
26
#include "qemu/main-loop.h"
27
#include "qemu/timer.h"
28
#include "sysemu/replay.h"
P
Pavel Dovgalyuk 已提交
29
#include "sysemu/sysemu.h"
30
#include "sysemu/cpus.h"
31

32 33 34
#ifdef CONFIG_POSIX
#include <pthread.h>
#endif
35

36 37 38 39
#ifdef CONFIG_PPOLL
#include <poll.h>
#endif

40 41 42 43
#ifdef CONFIG_PRCTL_PR_SET_TIMERSLACK
#include <sys/prctl.h>
#endif

P
Paolo Bonzini 已提交
44 45 46
/***********************************************************/
/* timers */

47
typedef struct QEMUClock {
48
    /* We rely on BQL to protect the timerlists */
49
    QLIST_HEAD(, QEMUTimerList) timerlists;
50 51 52

    NotifierList reset_notifiers;
    int64_t last;
53

54
    QEMUClockType type;
55
    bool enabled;
56
} QEMUClock;
P
Paolo Bonzini 已提交
57

58
QEMUTimerListGroup main_loop_tlg;
59
static QEMUClock qemu_clocks[QEMU_CLOCK_MAX];
60 61 62 63 64 65 66 67 68

/* A QEMUTimerList is a list of timers attached to a clock. More
 * than one QEMUTimerList can be attached to each clock, for instance
 * used by different AioContexts / threads. Each clock also has
 * a list of the QEMUTimerLists associated with it, in order that
 * reenabling the clock can call all the notifiers.
 */

struct QEMUTimerList {
69
    QEMUClock *clock;
70
    QemuMutex active_timers_lock;
71 72
    QEMUTimer *active_timers;
    QLIST_ENTRY(QEMUTimerList) list;
73 74
    QEMUTimerListNotifyCB *notify_cb;
    void *notify_opaque;
75 76 77

    /* lightweight method to mark the end of timerlist's running */
    QemuEvent timers_done_ev;
P
Paolo Bonzini 已提交
78 79
};

80 81 82 83 84 85 86 87
/**
 * qemu_clock_ptr:
 * @type: type of clock
 *
 * Translate a clock type into a pointer to QEMUClock object.
 *
 * Returns: a pointer to the QEMUClock object
 */
88
static inline QEMUClock *qemu_clock_ptr(QEMUClockType type)
89 90 91 92
{
    return &qemu_clocks[type];
}

93
static bool timer_expired_ns(QEMUTimer *timer_head, int64_t current_time)
94 95 96 97
{
    return timer_head && (timer_head->expire_time <= current_time);
}

98 99 100
QEMUTimerList *timerlist_new(QEMUClockType type,
                             QEMUTimerListNotifyCB *cb,
                             void *opaque)
101 102
{
    QEMUTimerList *timer_list;
103
    QEMUClock *clock = qemu_clock_ptr(type);
104 105

    timer_list = g_malloc0(sizeof(QEMUTimerList));
106
    qemu_event_init(&timer_list->timers_done_ev, true);
107
    timer_list->clock = clock;
108 109
    timer_list->notify_cb = cb;
    timer_list->notify_opaque = opaque;
110
    qemu_mutex_init(&timer_list->active_timers_lock);
111 112 113 114 115 116 117 118 119 120
    QLIST_INSERT_HEAD(&clock->timerlists, timer_list, list);
    return timer_list;
}

void timerlist_free(QEMUTimerList *timer_list)
{
    assert(!timerlist_has_timers(timer_list));
    if (timer_list->clock) {
        QLIST_REMOVE(timer_list, list);
    }
121
    qemu_mutex_destroy(&timer_list->active_timers_lock);
122 123 124
    g_free(timer_list);
}

125
static void qemu_clock_init(QEMUClockType type, QEMUTimerListNotifyCB *notify_cb)
P
Paolo Bonzini 已提交
126
{
127
    QEMUClock *clock = qemu_clock_ptr(type);
128

129 130 131
    /* Assert that the clock of type TYPE has not been initialized yet. */
    assert(main_loop_tlg.tl[type] == NULL);

P
Paolo Bonzini 已提交
132
    clock->type = type;
G
Gonglei 已提交
133
    clock->enabled = (type == QEMU_CLOCK_VIRTUAL ? false : true);
134
    clock->last = INT64_MIN;
135
    QLIST_INIT(&clock->timerlists);
136
    notifier_list_init(&clock->reset_notifiers);
137
    main_loop_tlg.tl[type] = timerlist_new(type, notify_cb, NULL);
P
Paolo Bonzini 已提交
138 139
}

140
bool qemu_clock_use_for_deadline(QEMUClockType type)
141
{
142
    return !(use_icount && (type == QEMU_CLOCK_VIRTUAL));
143 144
}

145
void qemu_clock_notify(QEMUClockType type)
146 147
{
    QEMUTimerList *timer_list;
148
    QEMUClock *clock = qemu_clock_ptr(type);
149 150 151 152 153
    QLIST_FOREACH(timer_list, &clock->timerlists, list) {
        timerlist_notify(timer_list);
    }
}

154 155 156 157 158 159 160
/* Disabling the clock will wait for related timerlists to stop
 * executing qemu_run_timers.  Thus, this functions should not
 * be used from the callback of a timer that is based on @clock.
 * Doing so would cause a deadlock.
 *
 * Caller should hold BQL.
 */
161
void qemu_clock_enable(QEMUClockType type, bool enabled)
P
Paolo Bonzini 已提交
162
{
163
    QEMUClock *clock = qemu_clock_ptr(type);
164
    QEMUTimerList *tl;
165
    bool old = clock->enabled;
P
Paolo Bonzini 已提交
166
    clock->enabled = enabled;
167
    if (enabled && !old) {
168
        qemu_clock_notify(type);
169 170 171 172
    } else if (!enabled && old) {
        QLIST_FOREACH(tl, &clock->timerlists, list) {
            qemu_event_wait(&tl->timers_done_ev);
        }
173
    }
P
Paolo Bonzini 已提交
174 175
}

176
bool timerlist_has_timers(QEMUTimerList *timer_list)
P
Paolo Bonzini 已提交
177
{
178
    return !!atomic_read(&timer_list->active_timers);
P
Paolo Bonzini 已提交
179 180
}

181
bool qemu_clock_has_timers(QEMUClockType type)
P
Paolo Bonzini 已提交
182
{
183
    return timerlist_has_timers(
184
        main_loop_tlg.tl[type]);
P
Paolo Bonzini 已提交
185 186
}

187 188
bool timerlist_expired(QEMUTimerList *timer_list)
{
189 190
    int64_t expire_time;

191 192 193 194
    if (!atomic_read(&timer_list->active_timers)) {
        return false;
    }

195 196 197 198 199 200 201 202
    qemu_mutex_lock(&timer_list->active_timers_lock);
    if (!timer_list->active_timers) {
        qemu_mutex_unlock(&timer_list->active_timers_lock);
        return false;
    }
    expire_time = timer_list->active_timers->expire_time;
    qemu_mutex_unlock(&timer_list->active_timers_lock);

P
Paolo Bonzini 已提交
203
    return expire_time <= qemu_clock_get_ns(timer_list->clock->type);
204 205
}

206
bool qemu_clock_expired(QEMUClockType type)
207
{
208
    return timerlist_expired(
209
        main_loop_tlg.tl[type]);
210 211
}

212 213 214 215 216
/*
 * As above, but return -1 for no deadline, and do not cap to 2^32
 * as we know the result is always positive.
 */

217
int64_t timerlist_deadline_ns(QEMUTimerList *timer_list)
218 219
{
    int64_t delta;
220
    int64_t expire_time;
221

222 223 224 225
    if (!atomic_read(&timer_list->active_timers)) {
        return -1;
    }

226
    if (!timer_list->clock->enabled) {
227 228 229
        return -1;
    }

230 231 232 233 234 235 236 237 238 239 240 241 242
    /* The active timers list may be modified before the caller uses our return
     * value but ->notify_cb() is called when the deadline changes.  Therefore
     * the caller should notice the change and there is no race condition.
     */
    qemu_mutex_lock(&timer_list->active_timers_lock);
    if (!timer_list->active_timers) {
        qemu_mutex_unlock(&timer_list->active_timers_lock);
        return -1;
    }
    expire_time = timer_list->active_timers->expire_time;
    qemu_mutex_unlock(&timer_list->active_timers_lock);

    delta = expire_time - qemu_clock_get_ns(timer_list->clock->type);
243 244 245 246 247 248 249 250

    if (delta <= 0) {
        return 0;
    }

    return delta;
}

251 252 253 254 255
/* Calculate the soonest deadline across all timerlists attached
 * to the clock. This is used for the icount timeout so we
 * ignore whether or not the clock should be used in deadline
 * calculations.
 */
256
int64_t qemu_clock_deadline_ns_all(QEMUClockType type)
257 258 259
{
    int64_t deadline = -1;
    QEMUTimerList *timer_list;
260
    QEMUClock *clock = qemu_clock_ptr(type);
261 262 263 264 265 266 267
    QLIST_FOREACH(timer_list, &clock->timerlists, list) {
        deadline = qemu_soonest_timeout(deadline,
                                        timerlist_deadline_ns(timer_list));
    }
    return deadline;
}

268
QEMUClockType timerlist_get_clock(QEMUTimerList *timer_list)
269
{
270
    return timer_list->clock->type;
271 272
}

273
QEMUTimerList *qemu_clock_get_main_loop_timerlist(QEMUClockType type)
274
{
275
    return main_loop_tlg.tl[type];
276 277
}

278 279 280
void timerlist_notify(QEMUTimerList *timer_list)
{
    if (timer_list->notify_cb) {
281
        timer_list->notify_cb(timer_list->notify_opaque, timer_list->clock->type);
282 283 284 285 286
    } else {
        qemu_notify_event();
    }
}

287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303
/* Transition function to convert a nanosecond timeout to ms
 * This is used where a system does not support ppoll
 */
int qemu_timeout_ns_to_ms(int64_t ns)
{
    int64_t ms;
    if (ns < 0) {
        return -1;
    }

    if (!ns) {
        return 0;
    }

    /* Always round up, because it's better to wait too long than to wait too
     * little and effectively busy-wait
     */
L
Laurent Vivier 已提交
304
    ms = DIV_ROUND_UP(ns, SCALE_MS);
305 306 307 308 309 310 311 312 313 314

    /* To avoid overflow problems, limit this to 2^31, i.e. approx 25 days */
    if (ms > (int64_t) INT32_MAX) {
        ms = INT32_MAX;
    }

    return (int) ms;
}


315 316 317 318 319 320 321 322 323 324
/* qemu implementation of g_poll which uses a nanosecond timeout but is
 * otherwise identical to g_poll
 */
int qemu_poll_ns(GPollFD *fds, guint nfds, int64_t timeout)
{
#ifdef CONFIG_PPOLL
    if (timeout < 0) {
        return ppoll((struct pollfd *)fds, nfds, NULL, NULL);
    } else {
        struct timespec ts;
325 326 327 328 329 330 331 332
        int64_t tvsec = timeout / 1000000000LL;
        /* Avoid possibly overflowing and specifying a negative number of
         * seconds, which would turn a very long timeout into a busy-wait.
         */
        if (tvsec > (int64_t)INT32_MAX) {
            tvsec = INT32_MAX;
        }
        ts.tv_sec = tvsec;
333 334 335 336 337 338 339 340 341
        ts.tv_nsec = timeout % 1000000000LL;
        return ppoll((struct pollfd *)fds, nfds, &ts, NULL);
    }
#else
    return g_poll(fds, nfds, qemu_timeout_ns_to_ms(timeout));
#endif
}


342 343 344
void timer_init_tl(QEMUTimer *ts,
                   QEMUTimerList *timer_list, int scale,
                   QEMUTimerCB *cb, void *opaque)
P
Paolo Bonzini 已提交
345
{
346
    ts->timer_list = timer_list;
P
Paolo Bonzini 已提交
347 348
    ts->cb = cb;
    ts->opaque = opaque;
349
    ts->scale = scale;
350
    ts->expire_time = -1;
351 352
}

353 354 355 356 357 358
void timer_deinit(QEMUTimer *ts)
{
    assert(ts->expire_time == -1);
    ts->timer_list = NULL;
}

359
static void timer_del_locked(QEMUTimerList *timer_list, QEMUTimer *ts)
P
Paolo Bonzini 已提交
360 361 362
{
    QEMUTimer **pt, *t;

363
    ts->expire_time = -1;
364
    pt = &timer_list->active_timers;
P
Paolo Bonzini 已提交
365 366 367 368 369
    for(;;) {
        t = *pt;
        if (!t)
            break;
        if (t == ts) {
370
            atomic_set(pt, t->next);
P
Paolo Bonzini 已提交
371 372 373 374 375 376
            break;
        }
        pt = &t->next;
    }
}

377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392
static bool timer_mod_ns_locked(QEMUTimerList *timer_list,
                                QEMUTimer *ts, int64_t expire_time)
{
    QEMUTimer **pt, *t;

    /* add the timer in the sorted list */
    pt = &timer_list->active_timers;
    for (;;) {
        t = *pt;
        if (!timer_expired_ns(t, expire_time)) {
            break;
        }
        pt = &t->next;
    }
    ts->expire_time = MAX(expire_time, 0);
    ts->next = *pt;
393
    atomic_set(pt, ts);
394 395 396 397 398 399 400

    return pt == &timer_list->active_timers;
}

static void timerlist_rearm(QEMUTimerList *timer_list)
{
    /* Interrupt execution to force deadline recalculation.  */
P
Pavel Dovgalyuk 已提交
401 402 403
    if (timer_list->clock->type == QEMU_CLOCK_VIRTUAL) {
        qemu_start_warp_timer();
    }
404 405 406
    timerlist_notify(timer_list);
}

407 408 409 410 411
/* stop a timer, but do not dealloc it */
void timer_del(QEMUTimer *ts)
{
    QEMUTimerList *timer_list = ts->timer_list;

412 413 414 415 416
    if (timer_list) {
        qemu_mutex_lock(&timer_list->active_timers_lock);
        timer_del_locked(timer_list, ts);
        qemu_mutex_unlock(&timer_list->active_timers_lock);
    }
417 418
}

P
Paolo Bonzini 已提交
419 420
/* modify the current timer so that it will be fired when current_time
   >= expire_time. The corresponding callback will be called. */
421
void timer_mod_ns(QEMUTimer *ts, int64_t expire_time)
P
Paolo Bonzini 已提交
422
{
423
    QEMUTimerList *timer_list = ts->timer_list;
424
    bool rearm;
P
Paolo Bonzini 已提交
425

426 427
    qemu_mutex_lock(&timer_list->active_timers_lock);
    timer_del_locked(timer_list, ts);
428
    rearm = timer_mod_ns_locked(timer_list, ts, expire_time);
429
    qemu_mutex_unlock(&timer_list->active_timers_lock);
P
Paolo Bonzini 已提交
430

431 432
    if (rearm) {
        timerlist_rearm(timer_list);
P
Paolo Bonzini 已提交
433 434 435
    }
}

436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459
/* modify the current timer so that it will be fired when current_time
   >= expire_time or the current deadline, whichever comes earlier.
   The corresponding callback will be called. */
void timer_mod_anticipate_ns(QEMUTimer *ts, int64_t expire_time)
{
    QEMUTimerList *timer_list = ts->timer_list;
    bool rearm;

    qemu_mutex_lock(&timer_list->active_timers_lock);
    if (ts->expire_time == -1 || ts->expire_time > expire_time) {
        if (ts->expire_time != -1) {
            timer_del_locked(timer_list, ts);
        }
        rearm = timer_mod_ns_locked(timer_list, ts, expire_time);
    } else {
        rearm = false;
    }
    qemu_mutex_unlock(&timer_list->active_timers_lock);

    if (rearm) {
        timerlist_rearm(timer_list);
    }
}

460
void timer_mod(QEMUTimer *ts, int64_t expire_time)
461
{
462
    timer_mod_ns(ts, expire_time * ts->scale);
463 464
}

465 466 467 468 469
void timer_mod_anticipate(QEMUTimer *ts, int64_t expire_time)
{
    timer_mod_anticipate_ns(ts, expire_time * ts->scale);
}

470
bool timer_pending(QEMUTimer *ts)
P
Paolo Bonzini 已提交
471
{
472
    return ts->expire_time >= 0;
P
Paolo Bonzini 已提交
473 474
}

475
bool timer_expired(QEMUTimer *timer_head, int64_t current_time)
P
Paolo Bonzini 已提交
476
{
477
    return timer_expired_ns(timer_head, current_time * timer_head->scale);
P
Paolo Bonzini 已提交
478 479
}

480
bool timerlist_run_timers(QEMUTimerList *timer_list)
P
Paolo Bonzini 已提交
481
{
482
    QEMUTimer *ts;
P
Paolo Bonzini 已提交
483
    int64_t current_time;
484
    bool progress = false;
485 486 487
    QEMUTimerCB *cb;
    void *opaque;

488 489 490 491
    if (!atomic_read(&timer_list->active_timers)) {
        return false;
    }

492
    qemu_event_reset(&timer_list->timers_done_ev);
493
    if (!timer_list->clock->enabled) {
494
        goto out;
495
    }
P
Paolo Bonzini 已提交
496

P
Pavel Dovgalyuk 已提交
497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517
    switch (timer_list->clock->type) {
    case QEMU_CLOCK_REALTIME:
        break;
    default:
    case QEMU_CLOCK_VIRTUAL:
        if (!replay_checkpoint(CHECKPOINT_CLOCK_VIRTUAL)) {
            goto out;
        }
        break;
    case QEMU_CLOCK_HOST:
        if (!replay_checkpoint(CHECKPOINT_CLOCK_HOST)) {
            goto out;
        }
        break;
    case QEMU_CLOCK_VIRTUAL_RT:
        if (!replay_checkpoint(CHECKPOINT_CLOCK_VIRTUAL_RT)) {
            goto out;
        }
        break;
    }

518
    current_time = qemu_clock_get_ns(timer_list->clock->type);
P
Paolo Bonzini 已提交
519
    for(;;) {
520
        qemu_mutex_lock(&timer_list->active_timers_lock);
521
        ts = timer_list->active_timers;
522
        if (!timer_expired_ns(ts, current_time)) {
523
            qemu_mutex_unlock(&timer_list->active_timers_lock);
P
Paolo Bonzini 已提交
524
            break;
525
        }
526

P
Paolo Bonzini 已提交
527
        /* remove timer from the list before calling the callback */
528
        timer_list->active_timers = ts->next;
P
Paolo Bonzini 已提交
529
        ts->next = NULL;
530
        ts->expire_time = -1;
531 532 533
        cb = ts->cb;
        opaque = ts->opaque;
        qemu_mutex_unlock(&timer_list->active_timers_lock);
P
Paolo Bonzini 已提交
534 535

        /* run the callback (the timer list can be modified) */
536
        cb(opaque);
537
        progress = true;
P
Paolo Bonzini 已提交
538
    }
539 540 541

out:
    qemu_event_set(&timer_list->timers_done_ev);
542
    return progress;
P
Paolo Bonzini 已提交
543 544
}

545 546
bool qemu_clock_run_timers(QEMUClockType type)
{
547
    return timerlist_run_timers(main_loop_tlg.tl[type]);
548 549
}

550 551
void timerlistgroup_init(QEMUTimerListGroup *tlg,
                         QEMUTimerListNotifyCB *cb, void *opaque)
552 553 554
{
    QEMUClockType type;
    for (type = 0; type < QEMU_CLOCK_MAX; type++) {
555
        tlg->tl[type] = timerlist_new(type, cb, opaque);
556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580
    }
}

void timerlistgroup_deinit(QEMUTimerListGroup *tlg)
{
    QEMUClockType type;
    for (type = 0; type < QEMU_CLOCK_MAX; type++) {
        timerlist_free(tlg->tl[type]);
    }
}

bool timerlistgroup_run_timers(QEMUTimerListGroup *tlg)
{
    QEMUClockType type;
    bool progress = false;
    for (type = 0; type < QEMU_CLOCK_MAX; type++) {
        progress |= timerlist_run_timers(tlg->tl[type]);
    }
    return progress;
}

int64_t timerlistgroup_deadline_ns(QEMUTimerListGroup *tlg)
{
    int64_t deadline = -1;
    QEMUClockType type;
P
Pavel Dovgalyuk 已提交
581
    bool play = replay_mode == REPLAY_MODE_PLAY;
582
    for (type = 0; type < QEMU_CLOCK_MAX; type++) {
P
Pavel Dovgalyuk 已提交
583 584 585 586 587 588 589 590 591
        if (qemu_clock_use_for_deadline(type)) {
            if (!play || type == QEMU_CLOCK_REALTIME) {
                deadline = qemu_soonest_timeout(deadline,
                                                timerlist_deadline_ns(tlg->tl[type]));
            } else {
                /* Read clock from the replay file and
                   do not calculate the deadline, based on virtual clock. */
                qemu_clock_get_ns(type);
            }
592 593 594 595 596
        }
    }
    return deadline;
}

597
int64_t qemu_clock_get_ns(QEMUClockType type)
P
Paolo Bonzini 已提交
598
{
599
    int64_t now, last;
600
    QEMUClock *clock = qemu_clock_ptr(type);
601

602
    switch (type) {
P
Paolo Bonzini 已提交
603 604 605 606 607 608 609 610 611 612
    case QEMU_CLOCK_REALTIME:
        return get_clock();
    default:
    case QEMU_CLOCK_VIRTUAL:
        if (use_icount) {
            return cpu_get_icount();
        } else {
            return cpu_get_clock();
        }
    case QEMU_CLOCK_HOST:
613
        now = REPLAY_CLOCK(REPLAY_CLOCK_HOST, get_clock_realtime());
614 615
        last = clock->last;
        clock->last = now;
P
Pavel Dovgalyuk 已提交
616
        if (now < last || now > (last + get_max_clock_jump())) {
617 618 619
            notifier_list_notify(&clock->reset_notifiers, &now);
        }
        return now;
620
    case QEMU_CLOCK_VIRTUAL_RT:
621
        return REPLAY_CLOCK(REPLAY_CLOCK_VIRTUAL_RT, cpu_get_clock());
P
Paolo Bonzini 已提交
622 623 624
    }
}

625 626 627 628
void qemu_clock_register_reset_notifier(QEMUClockType type,
                                        Notifier *notifier)
{
    QEMUClock *clock = qemu_clock_ptr(type);
629 630 631
    notifier_list_add(&clock->reset_notifiers, notifier);
}

632 633
void qemu_clock_unregister_reset_notifier(QEMUClockType type,
                                          Notifier *notifier)
634
{
P
Paolo Bonzini 已提交
635
    notifier_remove(notifier);
636 637
}

638
void init_clocks(QEMUTimerListNotifyCB *notify_cb)
P
Paolo Bonzini 已提交
639
{
640 641
    QEMUClockType type;
    for (type = 0; type < QEMU_CLOCK_MAX; type++) {
642
        qemu_clock_init(type, notify_cb);
643
    }
644

645 646 647
#ifdef CONFIG_PRCTL_PR_SET_TIMERSLACK
    prctl(PR_SET_TIMERSLACK, 1, 0, 0, 0);
#endif
P
Paolo Bonzini 已提交
648 649
}

650
uint64_t timer_expire_time_ns(QEMUTimer *ts)
P
Paolo Bonzini 已提交
651
{
652
    return timer_pending(ts) ? ts->expire_time : -1;
P
Paolo Bonzini 已提交
653 654
}

655
bool qemu_clock_run_all_timers(void)
P
Paolo Bonzini 已提交
656
{
657
    bool progress = false;
658
    QEMUClockType type;
A
Alex Bligh 已提交
659

660
    for (type = 0; type < QEMU_CLOCK_MAX; type++) {
661 662 663
        if (qemu_clock_use_for_deadline(type)) {
            progress |= qemu_clock_run_timers(type);
        }
664
    }
665

666
    return progress;
P
Paolo Bonzini 已提交
667
}