Browse Source
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>stable-1.1
committed by
Anthony Liguori
18 changed files with 43 additions and 13 deletions
@ -0,0 +1,27 @@ |
|||
/*
|
|||
* General purpose implementation of a simple periodic countdown timer. |
|||
* |
|||
* Copyright (c) 2007 CodeSourcery. |
|||
* |
|||
* This code is licensed under the GNU LGPL. |
|||
*/ |
|||
#ifndef PTIMER_H |
|||
#define PTIMER_H |
|||
|
|||
#include "qemu-common.h" |
|||
#include "qemu-timer.h" |
|||
|
|||
/* ptimer.c */ |
|||
typedef struct ptimer_state ptimer_state; |
|||
typedef void (*ptimer_cb)(void *opaque); |
|||
|
|||
ptimer_state *ptimer_init(QEMUBH *bh); |
|||
void ptimer_set_period(ptimer_state *s, int64_t period); |
|||
void ptimer_set_freq(ptimer_state *s, uint32_t freq); |
|||
void ptimer_set_limit(ptimer_state *s, uint64_t limit, int reload); |
|||
uint64_t ptimer_get_count(ptimer_state *s); |
|||
void ptimer_set_count(ptimer_state *s, uint64_t count); |
|||
void ptimer_run(ptimer_state *s, int oneshot); |
|||
void ptimer_stop(ptimer_state *s); |
|||
|
|||
#endif |
|||
Loading…
Reference in new issue