Module Name: src Committed By: matt Date: Wed Sep 2 17:52:10 UTC 2009
Modified Files: src/sys/arch/mips/mips [matt-nb5-mips64]: cpu_exec.c Log Message: s/entry_p/start_p/ in mips_netbsd_elfXX_probe To generate a diff of this commit: cvs rdiff -u -r1.50.54.1.4.5 -r1.50.54.1.4.6 \ src/sys/arch/mips/mips/cpu_exec.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/arch/mips/mips/cpu_exec.c diff -u src/sys/arch/mips/mips/cpu_exec.c:1.50.54.1.4.5 src/sys/arch/mips/mips/cpu_exec.c:1.50.54.1.4.6 --- src/sys/arch/mips/mips/cpu_exec.c:1.50.54.1.4.5 Wed Sep 2 01:36:03 2009 +++ src/sys/arch/mips/mips/cpu_exec.c Wed Sep 2 17:52:10 2009 @@ -1,4 +1,4 @@ -/* $NetBSD: cpu_exec.c,v 1.50.54.1.4.5 2009/09/02 01:36:03 matt Exp $ */ +/* $NetBSD: cpu_exec.c,v 1.50.54.1.4.6 2009/09/02 17:52:10 matt Exp $ */ /* * Copyright (c) 1992, 1993 @@ -35,7 +35,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: cpu_exec.c,v 1.50.54.1.4.5 2009/09/02 01:36:03 matt Exp $"); +__KERNEL_RCSID(0, "$NetBSD: cpu_exec.c,v 1.50.54.1.4.6 2009/09/02 17:52:10 matt Exp $"); #include "opt_compat_netbsd.h" #include "opt_compat_ultrix.h" @@ -312,7 +312,7 @@ #if EXEC_ELF32 int mips_netbsd_elf32_probe(struct lwp *l, struct exec_package *epp, void *eh0, - char *idt, vaddr_t *entry_p) + char *idt, vaddr_t *start_p) { struct proc * const p = l->l_proc; const Elf32_Ehdr * const eh = eh0; @@ -404,7 +404,7 @@ #if EXEC_ELF64 int mips_netbsd_elf64_probe(struct lwp *l, struct exec_package *epp, void *eh0, - char *idt, vaddr_t *entry_p) + char *idt, vaddr_t *start_p) { struct proc * const p = l->l_proc; const Elf64_Ehdr * const eh = eh0;