diff options
author | Per Fogelstrom <pefo@cvs.openbsd.org> | 1996-08-31 09:24:11 +0000 |
---|---|---|
committer | Per Fogelstrom <pefo@cvs.openbsd.org> | 1996-08-31 09:24:11 +0000 |
commit | 01bebf01277503d67e1a208085b2a86a44154993 (patch) | |
tree | 52453faa1c5020bbe77bdc7409a023f4cd45fa41 /sys/compat/linux | |
parent | 29228bcb2229da01995293a5cb6e28c3788af684 (diff) |
Cleanup exec
Diffstat (limited to 'sys/compat/linux')
-rw-r--r-- | sys/compat/linux/linux_exec.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/compat/linux/linux_exec.c b/sys/compat/linux/linux_exec.c index 8221564ad73..41b9f027af0 100644 --- a/sys/compat/linux/linux_exec.c +++ b/sys/compat/linux/linux_exec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: linux_exec.c,v 1.2 1996/04/17 05:23:46 mickey Exp $ */ +/* $OpenBSD: linux_exec.c,v 1.3 1996/08/31 09:24:02 pefo Exp $ */ /* $NetBSD: linux_exec.c,v 1.13 1996/04/05 00:01:10 christos Exp $ */ /* @@ -89,6 +89,7 @@ struct emul emul_linux_aout = { LINUX_AOUT_AUX_ARGSIZ, linux_aout_copyargs, setregs, + NULL, linux_sigcode, linux_esigcode, }; @@ -104,6 +105,7 @@ struct emul emul_linux_elf = { LINUX_ELF_AUX_ARGSIZ, elf_copyargs, setregs, + exec_elf_fixup, linux_sigcode, linux_esigcode, }; |