mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
hw/core/cpu: Use size_t for memory_rw_debug len argument
Match the prototype of cpu_memory_rw_debug(). Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20250325224403.4011975-4-richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
This commit is contained in:
parent
f32d678252
commit
581ca58246
3 changed files with 3 additions and 3 deletions
|
@ -154,7 +154,7 @@ struct CPUClass {
|
|||
|
||||
int (*mmu_index)(CPUState *cpu, bool ifetch);
|
||||
int (*memory_rw_debug)(CPUState *cpu, vaddr addr,
|
||||
uint8_t *buf, int len, bool is_write);
|
||||
uint8_t *buf, size_t len, bool is_write);
|
||||
void (*dump_state)(CPUState *cpu, FILE *, int flags);
|
||||
void (*query_cpu_fast)(CPUState *cpu, CpuInfoFast *value);
|
||||
int64_t (*get_arch_id)(CPUState *cpu);
|
||||
|
|
|
@ -604,7 +604,7 @@ void dump_mmu(CPUSPARCState *env);
|
|||
|
||||
#if !defined(TARGET_SPARC64) && !defined(CONFIG_USER_ONLY)
|
||||
int sparc_cpu_memory_rw_debug(CPUState *cpu, vaddr addr,
|
||||
uint8_t *buf, int len, bool is_write);
|
||||
uint8_t *buf, size_t len, bool is_write);
|
||||
#endif
|
||||
|
||||
/* translate.c */
|
||||
|
|
|
@ -389,7 +389,7 @@ void dump_mmu(CPUSPARCState *env)
|
|||
* that the sparc ABI is followed.
|
||||
*/
|
||||
int sparc_cpu_memory_rw_debug(CPUState *cs, vaddr address,
|
||||
uint8_t *buf, int len, bool is_write)
|
||||
uint8_t *buf, size_t len, bool is_write)
|
||||
{
|
||||
CPUSPARCState *env = cpu_env(cs);
|
||||
target_ulong addr = address;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue