diff options
| author | 1996-08-31 09:19:14 +0000 | |
|---|---|---|
| committer | 1996-08-31 09:19:14 +0000 | |
| commit | ab30c27762275a551c7f4d55f58a340caa26a609 (patch) | |
| tree | b0b6a14e722c46c7eb40d20bc9825ea39fe98773 /sys/compat/linux/linux_exec.c | |
| parent | Some more data in package (diff) | |
| download | wireguard-openbsd-ab30c27762275a551c7f4d55f58a340caa26a609.tar.xz wireguard-openbsd-ab30c27762275a551c7f4d55f58a340caa26a609.zip | |
Cleanup exec
Diffstat (limited to 'sys/compat/linux/linux_exec.c')
| -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, }; |
