Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/kern Correct omissions inadvertantly introduced when the...
details: https://anonhg.NetBSD.org/src/rev/570799288186
branches: trunk
changeset: 494748:570799288186
user: mjacob <mjacob%NetBSD.org@localhost>
date: Thu Jul 13 09:34:23 2000 +0000
description:
Correct omissions inadvertantly introduced when the non-debug
version (macro) was updated in exec.h.
diffstat:
sys/kern/exec_subr.c | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diffs (34 lines):
diff -r 7d9c3e11864f -r 570799288186 sys/kern/exec_subr.c
--- a/sys/kern/exec_subr.c Thu Jul 13 08:37:10 2000 +0000
+++ b/sys/kern/exec_subr.c Thu Jul 13 09:34:23 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: exec_subr.c,v 1.20 2000/06/27 17:41:12 mrg Exp $ */
+/* $NetBSD: exec_subr.c,v 1.21 2000/07/13 09:34:23 mjacob Exp $ */
/*
* Copyright (c) 1993, 1994, 1996 Christopher G. Demetriou
@@ -57,7 +57,7 @@
*/
void
-new_vmcmd(evsp, proc, len, addr, vp, offset, prot)
+new_vmcmd(evsp, proc, len, addr, vp, offset, prot, flags)
struct exec_vmcmd_set *evsp;
int (*proc) __P((struct proc * p, struct exec_vmcmd *));
u_long len;
@@ -65,6 +65,7 @@
struct vnode *vp;
u_long offset;
u_int prot;
+ int flags;
{
struct exec_vmcmd *vcp;
@@ -78,6 +79,7 @@
vref(vp);
vcp->ev_offset = offset;
vcp->ev_prot = prot;
+ vcp->ev_flags = flags;
}
#endif /* DEBUG */
Home |
Main Index |
Thread Index |
Old Index