Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/kern there is single emul_irix now



details:   https://anonhg.NetBSD.org/src/rev/e2a665a398de
branches:  trunk
changeset: 539987:e2a665a398de
user:      jdolecek <jdolecek%NetBSD.org@localhost>
date:      Sat Nov 30 13:19:37 2002 +0000

description:
there is single emul_irix now
use irix_n32_setregs for the IRIX n32 execsw entry

diffstat:

 sys/kern/exec_conf.c |  12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diffs (41 lines):

diff -r 5a02026aa38f -r e2a665a398de sys/kern/exec_conf.c
--- a/sys/kern/exec_conf.c      Sat Nov 30 13:18:13 2002 +0000
+++ b/sys/kern/exec_conf.c      Sat Nov 30 13:19:37 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: exec_conf.c,v 1.77 2002/11/13 15:16:27 jdolecek Exp $  */
+/*     $NetBSD: exec_conf.c,v 1.78 2002/11/30 13:19:37 jdolecek Exp $  */
 
 /*
  * Copyright (c) 1993, 1994 Christopher G. Demetriou
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: exec_conf.c,v 1.77 2002/11/13 15:16:27 jdolecek Exp $");
+__KERNEL_RCSID(0, "$NetBSD: exec_conf.c,v 1.78 2002/11/30 13:19:37 jdolecek Exp $");
 
 #include "opt_execfmt.h"
 #include "opt_compat_freebsd.h"
@@ -368,18 +368,18 @@
        { sizeof (Elf32_Ehdr),
          exec_elf32_makecmds,
          { ELF32NAME2(irix,probe_n32) },
-         &emul_irix_n32,
+         &emul_irix,
          EXECSW_PRIO_ANY,
          IRIX_AUX_ARGSIZ,
          irix_elf32_copyargs,
-         NULL,
-         coredump_netbsd },
+         irix_n32_setregs,
+         coredump_elf32 },
 
        /* IRIX Elf32 o32 ABI */
        { sizeof (Elf32_Ehdr),
          exec_elf32_makecmds,
          { ELF32NAME2(irix,probe_o32) },
-         &emul_irix_o32,
+         &emul_irix,
          EXECSW_PRIO_ANY,
          IRIX_AUX_ARGSIZ,
          irix_elf32_copyargs,



Home | Main Index | Thread Index | Old Index