tools: vm_resume() requires wakeup reason

DM need to know wakeup reason when resume the VM, so
vm_resume(char *name) is updated to vm_resume(char *name, unsigned reason),
in acrn_vm_ops.c

Acked-by: Yan Like <like.yan@intel.com>
Signed-off-by: Tao Yuhong <yuhong.tao@intel.com>
This commit is contained in:
yuhong.tao@intel.com
2018-08-10 18:31:55 +08:00
committed by lijinxia
parent 64a9b2b423
commit 2d802d0afe
5 changed files with 31 additions and 20 deletions

View File

@@ -56,6 +56,6 @@ int start_vm(char *vmname);
int pause_vm(char *vmname);
int continue_vm(char *vmname);
int suspend_vm(char *vmname);
int resume_vm(char *vmname);
int resume_vm(char *vmname, unsigned reason);
#endif /* _ACRNCTL_H_ */