mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 04:06:46 +00:00 
			
		
		
		
	 3a75187fd8
			
		
	
	
		3a75187fd8
		
	
	
	
	
		
			
			Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
		
			
				
	
	
		
			26 lines
		
	
	
		
			581 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			581 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * QEMU backup
 | |
|  *
 | |
|  * Copyright (c) 2013 Proxmox Server Solutions
 | |
|  * Copyright (c) 2016 HUAWEI TECHNOLOGIES CO., LTD.
 | |
|  * Copyright (c) 2016 Intel Corporation
 | |
|  * Copyright (c) 2016 FUJITSU LIMITED
 | |
|  *
 | |
|  * Authors:
 | |
|  *  Dietmar Maurer <dietmar@proxmox.com>
 | |
|  *  Changlong Xie <xiecl.fnst@cn.fujitsu.com>
 | |
|  *
 | |
|  * This work is licensed under the terms of the GNU GPL, version 2 or later.
 | |
|  * See the COPYING file in the top-level directory.
 | |
|  *
 | |
|  */
 | |
| 
 | |
| #ifndef BLOCK_BACKUP_H
 | |
| #define BLOCK_BACKUP_H
 | |
| 
 | |
| #include "block/block_int.h"
 | |
| 
 | |
| void backup_do_checkpoint(BlockJob *job, Error **errp);
 | |
| 
 | |
| #endif
 |