diff options
author | Warner Losh <imp@bsdimp.com> | 2021-04-29 10:04:28 -0600 |
---|---|---|
committer | Warner Losh <imp@bsdimp.com> | 2021-05-11 13:53:52 -0600 |
commit | afcbcff80bf81a3399e24c7908b17776e1489df9 (patch) | |
tree | 334474e4d20f15bdcf19fd506579477473d16baa /bsd-user/qemu.h | |
parent | f8ce39701b5be032fb3f9c05e8adb4055f70eec2 (diff) | |
download | qemu-afcbcff80bf81a3399e24c7908b17776e1489df9.zip qemu-afcbcff80bf81a3399e24c7908b17776e1489df9.tar.gz qemu-afcbcff80bf81a3399e24c7908b17776e1489df9.tar.bz2 |
bsd-user: rename linux_binprm to bsd_binprm
Rename linux_binprm to bsd_binprm to reflect that we're loading BSD binaries,
not ELF ones.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Warner Losh <imp@bsdimp.com>
Diffstat (limited to 'bsd-user/qemu.h')
-rw-r--r-- | bsd-user/qemu.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bsd-user/qemu.h b/bsd-user/qemu.h index eb66d15..c02e8a5 100644 --- a/bsd-user/qemu.h +++ b/bsd-user/qemu.h @@ -115,7 +115,7 @@ extern unsigned long mmap_min_addr; * This structure is used to hold the arguments that are * used when loading binaries. */ -struct linux_binprm { +struct bsd_binprm { char buf[128]; void *page[MAX_ARG_PAGES]; abi_ulong p; @@ -133,9 +133,9 @@ abi_ulong loader_build_argptr(int envc, int argc, abi_ulong sp, int loader_exec(const char *filename, char **argv, char **envp, struct target_pt_regs *regs, struct image_info *infop); -int load_elf_binary(struct linux_binprm *bprm, struct target_pt_regs *regs, +int load_elf_binary(struct bsd_binprm *bprm, struct target_pt_regs *regs, struct image_info *info); -int load_flt_binary(struct linux_binprm *bprm, struct target_pt_regs *regs, +int load_flt_binary(struct bsd_binprm *bprm, struct target_pt_regs *regs, struct image_info *info); abi_long memcpy_to_target(abi_ulong dest, const void *src, |