From owner-cvs-all Sun Sep 13 22:36:55 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA01900 for cvs-all-outgoing; Sun, 13 Sep 1998 22:36:55 -0700 (PDT) (envelope-from owner-cvs-all) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA01894; Sun, 13 Sep 1998 22:36:54 -0700 (PDT) (envelope-from jdp@FreeBSD.org) From: John Polstra Received: (from jdp@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA06207; Sun, 13 Sep 1998 22:36:52 -0700 (PDT) Date: Sun, 13 Sep 1998 22:36:52 -0700 (PDT) Message-Id: <199809140536.WAA06207@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/conf files src/sys/i386/ibcs2 ibcs2_sysvec.c src/sys/i386/linux linux_sysvec.c src/sys/kern imgact_aout.c imgact_elf.c kern_sig.c init_sysvec.c src/sys/sys imgact_aout.h imgact_elf.h signalvar.h sysent.h Sender: owner-cvs-all@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jdp 1998/09/13 22:36:52 PDT Modified files: sys/conf files sys/i386/ibcs2 ibcs2_sysvec.c sys/i386/linux linux_sysvec.c sys/kern imgact_aout.c imgact_elf.c kern_sig.c sys/sys imgact_aout.h imgact_elf.h signalvar.h sysent.h Removed files: sys/kern init_sysvec.c Log: Add provisions for variant core dump file formats, depending on the object format of the executable being dumped. This is the first step toward producing ELF core dumps in the proper format. I will commit the code to generate the ELF core dumps Real Soon Now. In the meantime, ELF executables won't dump core at all. That is probably no less useful than dumping a.out-style core dumps as they have done until now. Submitted by: Alex (with very minor changes by me) Revision Changes Path 1.156 +0 -1 src/sys/conf/files 1.8 +3 -2 src/sys/i386/ibcs2/ibcs2_sysvec.c 1.33 +6 -3 src/sys/i386/linux/linux_sysvec.c 1.42 +95 -1 src/sys/kern/imgact_aout.c 1.30 +11 -2 src/sys/kern/imgact_elf.c 1.46 +9 -73 src/sys/kern/kern_sig.c 1.9 +9 -1 src/sys/sys/imgact_aout.h 1.9 +6 -1 src/sys/sys/imgact_elf.h 1.19 +4 -1 src/sys/sys/signalvar.h 1.19 +3 -1 src/sys/sys/sysent.h