diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2025-08-02 19:38:28 +1000 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2025-08-30 07:04:02 +1000 |
| commit | 553bf7dbd466794955f93c07b5c6fc0a7f65abb4 (patch) | |
| tree | 6e29d02671c01011cf22046d8b4adeb71caa9f0d /linux-user/loader.h | |
| parent | 1b32b3d7d8d438ee46313312aa62ae8b89c90bcb (diff) | |
| download | focaccia-qemu-553bf7dbd466794955f93c07b5c6fc0a7f65abb4.tar.gz focaccia-qemu-553bf7dbd466794955f93c07b5c6fc0a7f65abb4.zip | |
linux-user: Declare elf_core_copy_regs in loader.h
Drop the static from all implementations. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'linux-user/loader.h')
| -rw-r--r-- | linux-user/loader.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/linux-user/loader.h b/linux-user/loader.h index 6482c7c90c..8f4a7f69ac 100644 --- a/linux-user/loader.h +++ b/linux-user/loader.h @@ -106,4 +106,7 @@ const char *elf_hwcap2_str(uint32_t bit); const char *get_elf_platform(CPUState *cs); const char *get_elf_base_platform(CPUState *cs); +struct target_elf_gregset_t; +void elf_core_copy_regs(struct target_elf_gregset_t *, const CPUArchState *); + #endif /* LINUX_USER_LOADER_H */ |