[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 11/23] exec: avoid using C++ keywords in function parameters
From: |
Paolo Bonzini |
Subject: |
[PULL 11/23] exec: avoid using C++ keywords in function parameters |
Date: |
Fri, 28 Jun 2024 19:28:43 +0200 |
From: Roman Kiryanov <rkir@google.com>
to use the QEMU headers with a C++ compiler.
Signed-off-by: Roman Kiryanov <rkir@google.com>
Link: 20240618224553.878869-1-rkir@google.com">https://lore.kernel.org/r/20240618224553.878869-1-rkir@google.com
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
include/exec/memory.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/exec/memory.h b/include/exec/memory.h
index 0903513d132..154626f9ad2 100644
--- a/include/exec/memory.h
+++ b/include/exec/memory.h
@@ -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:
--
2.45.2
- [PULL 01/23] configure: detect --cpu=mipsisa64r6, (continued)
- [PULL 01/23] configure: detect --cpu=mipsisa64r6, Paolo Bonzini, 2024/06/28
- [PULL 03/23] Revert "host/i386: assume presence of SSSE3", Paolo Bonzini, 2024/06/28
- [PULL 05/23] meson: allow configuring the x86-64 baseline, Paolo Bonzini, 2024/06/28
- [PULL 02/23] Revert "host/i386: assume presence of POPCNT", Paolo Bonzini, 2024/06/28
- [PULL 04/23] Revert "host/i386: assume presence of SSE2", Paolo Bonzini, 2024/06/28
- [PULL 07/23] block: make assertion more generic, Paolo Bonzini, 2024/06/28
- [PULL 06/23] meson: remove dead optimization option, Paolo Bonzini, 2024/06/28
- [PULL 08/23] block: do not check bdrv_file_open, Paolo Bonzini, 2024/06/28
- [PULL 09/23] block: remove separate bdrv_file_open callback, Paolo Bonzini, 2024/06/28
- [PULL 10/23] block: rename former bdrv_file_open callbacks, Paolo Bonzini, 2024/06/28
- [PULL 11/23] exec: avoid using C++ keywords in function parameters,
Paolo Bonzini <=
- [PULL 13/23] include: move typeof_strip_qual to compiler.h, use it in QAPI_LIST_LENGTH(), Paolo Bonzini, 2024/06/28
- [PULL 14/23] target/i386: fix CC_OP dump, Paolo Bonzini, 2024/06/28
- [PULL 15/23] target/i386: use cpu_cc_dst for CC_OP_POPCNT, Paolo Bonzini, 2024/06/28
- [PULL 12/23] exec: don't use void* in pointer arithmetic in headers, Paolo Bonzini, 2024/06/28
- [PULL 16/23] target/i386: give CC_OP_POPCNT low bits corresponding to MO_TL, Paolo Bonzini, 2024/06/28
- [PULL 17/23] target/i386: remove unused enum, Paolo Bonzini, 2024/06/28
- [PULL 18/23] target/i386: SEV: rename sev_snp_guest->id_block, Paolo Bonzini, 2024/06/28
- [PULL 19/23] target/i386: SEV: store pointer to decoded id_block in SevSnpGuest, Paolo Bonzini, 2024/06/28
- [PULL 20/23] target/i386: SEV: rename sev_snp_guest->id_auth, Paolo Bonzini, 2024/06/28
- [PULL 21/23] target/i386: SEV: store pointer to decoded id_auth in SevSnpGuest, Paolo Bonzini, 2024/06/28