Pass the elf exec header in the probe function.

This commit is contained in:
christos 1996-06-13 18:33:54 +00:00
parent 386aeb320f
commit 5d27db0882
2 changed files with 6 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: svr4_exec.c,v 1.16 1995/10/14 20:24:20 christos Exp $ */
/* $NetBSD: svr4_exec.c,v 1.17 1996/06/13 18:33:54 christos Exp $ */
/*
* Copyright (c) 1994 Christos Zoulas
@ -108,9 +108,10 @@ svr4_copyargs(pack, arginfo, stack, argp)
}
int
svr4_elf_probe(p, epp, itp, pos)
svr4_elf_probe(p, epp, eh, itp, pos)
struct proc *p;
struct exec_package *epp;
Elf32_Ehdr *eh;
char *itp;
u_long *pos;
{

View File

@ -1,4 +1,4 @@
/* $NetBSD: svr4_exec.h,v 1.7 1995/07/02 06:16:06 christos Exp $ */
/* $NetBSD: svr4_exec.h,v 1.8 1996/06/13 18:33:55 christos Exp $ */
/*
* Copyright (c) 1994 Christos Zoulas
@ -61,7 +61,7 @@
# define SVR4_INTERP_ADDR 0
#endif
int svr4_elf_probe __P((struct proc *p, struct exec_package *, char *,
u_long *pos));
int svr4_elf_probe __P((struct proc *, struct exec_package *, Elf32_Ehdr *,
char *, u_long *));
#endif /* !_SVR4_EXEC_H_ */