mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 20:44:16 +00:00 
			
		
		
		
	 bc5c4f2196
			
		
	
	
		bc5c4f2196
		
	
	
	
	
		
			
			I'll be adding an error to it in a subsequent patch. Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Message-Id: <20170202125956.21942-2-dgilbert@redhat.com> Signed-off-by: Juan Quintela <quintela@redhat.com>
		
			
				
	
	
		
			22 lines
		
	
	
		
			629 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			629 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "qemu/osdep.h"
 | |
| #include "qemu-common.h"
 | |
| #include "migration/vmstate.h"
 | |
| 
 | |
| const VMStateDescription vmstate_dummy = {};
 | |
| 
 | |
| int vmstate_register_with_alias_id(DeviceState *dev,
 | |
|                                    int instance_id,
 | |
|                                    const VMStateDescription *vmsd,
 | |
|                                    void *base, int alias_id,
 | |
|                                    int required_for_version,
 | |
|                                    Error **errp)
 | |
| {
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| void vmstate_unregister(DeviceState *dev,
 | |
|                         const VMStateDescription *vmsd,
 | |
|                         void *opaque)
 | |
| {
 | |
| }
 |