mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-30 22:03:54 -06:00
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>
This commit is contained in:
parent
f8ce39701b
commit
afcbcff80b
3 changed files with 7 additions and 7 deletions
|
@ -662,7 +662,7 @@ static abi_ulong copy_elf_strings(int argc, char **argv, void **page,
|
|||
return p;
|
||||
}
|
||||
|
||||
static abi_ulong setup_arg_pages(abi_ulong p, struct linux_binprm *bprm,
|
||||
static abi_ulong setup_arg_pages(abi_ulong p, struct bsd_binprm *bprm,
|
||||
struct image_info *info)
|
||||
{
|
||||
abi_ulong stack_base, size, error;
|
||||
|
@ -1143,7 +1143,7 @@ static void load_symbols(struct elfhdr *hdr, int fd)
|
|||
syminfos = s;
|
||||
}
|
||||
|
||||
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)
|
||||
{
|
||||
struct elfhdr elf_ex;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue