mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-26 20: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
|
@ -32,7 +32,7 @@ static int count(char **vec)
|
|||
return i;
|
||||
}
|
||||
|
||||
static int prepare_binprm(struct linux_binprm *bprm)
|
||||
static int prepare_binprm(struct bsd_binprm *bprm)
|
||||
{
|
||||
struct stat st;
|
||||
int mode;
|
||||
|
@ -127,7 +127,7 @@ 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)
|
||||
{
|
||||
struct linux_binprm bprm;
|
||||
struct bsd_binprm bprm;
|
||||
int retval;
|
||||
int i;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue