diff options
author | dyson <dyson@FreeBSD.org> | 1996-06-18 05:16:00 +0000 |
---|---|---|
committer | dyson <dyson@FreeBSD.org> | 1996-06-18 05:16:00 +0000 |
commit | 01d0667f094f295d42229575567f6b5a2ce0b746 (patch) | |
tree | 56e5b93363f08a48419fadcd9de833c9ef6a5292 /sys/alpha | |
parent | 26ad2004f9ad2d994e528b2448f065726dfe7ca2 (diff) | |
download | FreeBSD-src-01d0667f094f295d42229575567f6b5a2ce0b746.zip FreeBSD-src-01d0667f094f295d42229575567f6b5a2ce0b746.tar.gz |
Clean-up the new VM map procfs code, and also add support for executable
format file "etype". It contains a description of the binary type for
a process.
Diffstat (limited to 'sys/alpha')
-rw-r--r-- | sys/alpha/linux/linux_sysvec.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/alpha/linux/linux_sysvec.c b/sys/alpha/linux/linux_sysvec.c index 07abfbe..f2c7ba6 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.5 1996/05/01 06:31:18 jkh Exp $ + * $Id: linux_sysvec.c,v 1.6 1996/06/12 05:06:29 gpalmer Exp $ */ /* XXX we use functions that might not exist. */ @@ -382,6 +382,7 @@ struct sysentvec linux_sysvec = { linux_sigcode, &linux_szsigcode, linux_prepsyscall, + "Linux a.out" }; struct sysentvec elf_linux_sysvec = { @@ -397,6 +398,7 @@ struct sysentvec elf_linux_sysvec = { linux_sigcode, &linux_szsigcode, linux_prepsyscall, + "Linux ELF" }; /* |