remove local idea of ELF_AUX_ARGSIZ - since this emul uses elf32_copyargs(),

it shouldn't override the size
This commit is contained in:
jdolecek 2003-02-19 09:45:48 +00:00
parent 382f8f9883
commit 853290d652
2 changed files with 2 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: freebsd_exec.h,v 1.8 2003/01/18 07:33:15 thorpej Exp $ */
/* $NetBSD: freebsd_exec.h,v 1.9 2003/02/19 09:45:49 jdolecek Exp $ */
/*-
* Copyright (c) 1992, 1993
@ -100,8 +100,6 @@ int exec_freebsd_aout_makecmds __P((struct proc *, struct exec_package *));
#endif /* EXEC_AOUT */
#ifdef EXEC_ELF32
#define FREEBSD_ELF_AUX_ARGSIZ howmany(sizeof(Aux32Info) * 8, sizeof(char *))
#define FREEBSD_ELF_BRAND_STRING "FreeBSD"
#define FREEBSD_ELF_INTERP_PREFIX_STRING "/usr/libexec/ld-elf.so"

View File

@ -1,4 +1,4 @@
/* $NetBSD: ibcs2_exec.h,v 1.9 2000/11/21 00:37:53 jdolecek Exp $ */
/* $NetBSD: ibcs2_exec.h,v 1.10 2003/02/19 09:45:48 jdolecek Exp $ */
/*
* Copyright (c) 1994, 1995, 1998 Scott Bartram
@ -183,8 +183,6 @@ extern const struct emul emul_ibcs2;
int exec_ibcs2_xout_makecmds __P((struct proc *, struct exec_package *));
#ifdef EXEC_ELF32
#define IBCS2_ELF_AUX_ARGSIZ howmany(sizeof(Aux32Info) * 8, sizeof(char *))
int ibcs2_elf32_probe __P((struct proc *, struct exec_package *,
void *, char *, vaddr_t *));
#endif