mirror of https://github.com/xemu-project/xemu.git
exec: avoid using C++ keywords in function parameters
to use the QEMU headers with a C++ compiler. Signed-off-by: Roman Kiryanov <rkir@google.com> Link: https://lore.kernel.org/r/20240618224553.878869-1-rkir@google.com Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
d656aaa136
commit
17c7df806b
|
@ -925,7 +925,7 @@ struct MemoryListener {
|
|||
* the current transaction.
|
||||
*/
|
||||
void (*log_start)(MemoryListener *listener, MemoryRegionSection *section,
|
||||
int old, int new);
|
||||
int old_val, int new_val);
|
||||
|
||||
/**
|
||||
* @log_stop:
|
||||
|
@ -944,7 +944,7 @@ struct MemoryListener {
|
|||
* the current transaction.
|
||||
*/
|
||||
void (*log_stop)(MemoryListener *listener, MemoryRegionSection *section,
|
||||
int old, int new);
|
||||
int old_val, int new_val);
|
||||
|
||||
/**
|
||||
* @log_sync:
|
||||
|
|
Loading…
Reference in New Issue