diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-08-31 19:30:15 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-08-31 19:30:15 +0000 |
commit | 55a6e51f2a78536d605a6a00dfbec34227b2dd32 (patch) | |
tree | 7534a657aee92fe8ee802394faf4ff6757b258e2 /hw/ptimer.c | |
parent | 4e2a68c1e1b296bca8a60b480ac935527cd87953 (diff) |
Add VMState support for ptimers
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/ptimer.c')
-rw-r--r-- | hw/ptimer.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/hw/ptimer.c b/hw/ptimer.c index f1994bd2b1..a4343b67c6 100644 --- a/hw/ptimer.c +++ b/hw/ptimer.c @@ -212,6 +212,27 @@ void qemu_get_ptimer(QEMUFile *f, ptimer_state *s) qemu_get_timer(f, s->timer); } +static int get_ptimer(QEMUFile *f, void *pv, size_t size) +{ + ptimer_state *v = pv; + + qemu_get_ptimer(f, v); + return 0; +} + +static void put_ptimer(QEMUFile *f, const void *pv, size_t size) +{ + ptimer_state *v = (void *)pv; + + qemu_put_ptimer(f, v); +} + +const VMStateInfo vmstate_info_ptimer = { + .name = "ptimer", + .get = get_ptimer, + .put = put_ptimer, +}; + ptimer_state *ptimer_init(QEMUBH *bh) { ptimer_state *s; |