mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-20 07:59:00 +00:00
qemuMonitorJSONSave[Physical|Virtual]Memory: Reformat function headers
Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
e09b427ae9
commit
4c8f4123c8
@ -2981,18 +2981,21 @@ static int qemuMonitorJSONSaveMemory(qemuMonitor *mon,
|
||||
}
|
||||
|
||||
|
||||
int qemuMonitorJSONSaveVirtualMemory(qemuMonitor *mon,
|
||||
unsigned long long offset,
|
||||
unsigned long long length,
|
||||
const char *path)
|
||||
int
|
||||
qemuMonitorJSONSaveVirtualMemory(qemuMonitor *mon,
|
||||
unsigned long long offset,
|
||||
unsigned long long length,
|
||||
const char *path)
|
||||
{
|
||||
return qemuMonitorJSONSaveMemory(mon, "memsave", offset, length, path);
|
||||
}
|
||||
|
||||
int qemuMonitorJSONSavePhysicalMemory(qemuMonitor *mon,
|
||||
unsigned long long offset,
|
||||
unsigned long long length,
|
||||
const char *path)
|
||||
|
||||
int
|
||||
qemuMonitorJSONSavePhysicalMemory(qemuMonitor *mon,
|
||||
unsigned long long offset,
|
||||
unsigned long long length,
|
||||
const char *path)
|
||||
{
|
||||
return qemuMonitorJSONSaveMemory(mon, "pmemsave", offset, length, path);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user