 5b262bb697
			
		
	
	
		5b262bb697
		
	
	
	
	
		
			
			Ptimer is a generic countdown timer helper that is used by many timer device models as well as by the QEMU core. Add QTests for the ptimer. Signed-off-by: Dmitry Osipenko <digetx@gmail.com> Message-id: 1de89fe6e1ccaf6c8071ee3469e1a844df948359.1473252818.git.digetx@gmail.com Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
		
			
				
	
	
		
			26 lines
		
	
	
		
			772 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			772 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "qemu/osdep.h"
 | |
| #include "qemu-common.h"
 | |
| #include "migration/vmstate.h"
 | |
| 
 | |
| const VMStateDescription vmstate_dummy = {};
 | |
| const VMStateInfo vmstate_info_uint8;
 | |
| const VMStateInfo vmstate_info_uint32;
 | |
| const VMStateInfo vmstate_info_uint64;
 | |
| const VMStateInfo vmstate_info_int64;
 | |
| const VMStateInfo vmstate_info_timer;
 | |
| 
 | |
| int vmstate_register_with_alias_id(DeviceState *dev,
 | |
|                                    int instance_id,
 | |
|                                    const VMStateDescription *vmsd,
 | |
|                                    void *base, int alias_id,
 | |
|                                    int required_for_version)
 | |
| {
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| void vmstate_unregister(DeviceState *dev,
 | |
|                         const VMStateDescription *vmsd,
 | |
|                         void *opaque)
 | |
| {
 | |
| }
 |