diff options
| author | John Polstra <jdp@FreeBSD.org> | 1998-09-14 05:36:51 +0000 |
|---|---|---|
| committer | John Polstra <jdp@FreeBSD.org> | 1998-09-14 05:36:51 +0000 |
| commit | 22d4b0fb418e0896f158ce3994ff117a708d7a7c (patch) | |
| tree | f1d06e0521c051e00d0391af434ccfc570c23d52 /sys/alpha/linux | |
| parent | 9f67f727aaee36ed550a3700417ddce5c235fcd0 (diff) | |
Notes
Diffstat (limited to 'sys/alpha/linux')
| -rw-r--r-- | sys/alpha/linux/linux_sysvec.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sys/alpha/linux/linux_sysvec.c b/sys/alpha/linux/linux_sysvec.c index 67ed448cad98..4b1380c9e80a 100644 --- a/sys/alpha/linux/linux_sysvec.c +++ b/sys/alpha/linux/linux_sysvec.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux_sysvec.c,v 1.31 1998/07/29 16:43:00 bde Exp $ + * $Id: linux_sysvec.c,v 1.32 1998/08/16 01:21:50 bde Exp $ */ /* XXX we use functions that might not exist. */ @@ -41,6 +41,7 @@ #include <sys/systm.h> #include <sys/sysent.h> #include <sys/imgact.h> +#include <sys/imgact_aout.h> #include <sys/imgact_elf.h> #include <sys/signalvar.h> #include <sys/malloc.h> @@ -401,7 +402,8 @@ struct sysentvec linux_sysvec = { linux_sigcode, &linux_szsigcode, linux_prepsyscall, - "Linux a.out" + "Linux a.out", + aout_coredump }; struct sysentvec elf_linux_sysvec = { @@ -418,7 +420,8 @@ struct sysentvec elf_linux_sysvec = { linux_sigcode, &linux_szsigcode, linux_prepsyscall, - "Linux ELF" + "Linux ELF", + elf_coredump }; /* |
