]> Git Repo - qemu.git/blob - stubs/vmstate.c
parallels: Sanity check for s->tracks (CVE-2014-0142)
[qemu.git] / stubs / vmstate.c
1 #include "qemu-common.h"
2 #include "migration/vmstate.h"
3
4 const VMStateDescription vmstate_dummy = {};
5
6 int vmstate_register_with_alias_id(DeviceState *dev,
7                                    int instance_id,
8                                    const VMStateDescription *vmsd,
9                                    void *base, int alias_id,
10                                    int required_for_version)
11 {
12     return 0;
13 }
14
15 void vmstate_unregister(DeviceState *dev,
16                         const VMStateDescription *vmsd,
17                         void *opaque)
18 {
19 }
This page took 0.021308 seconds and 4 git commands to generate.