Source-Changes-HG archive

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

[src/netbsd-1-5]: src/sys/kern Pull up revision 1.66 (requested by fvdl):



details:   https://anonhg.NetBSD.org/src/rev/f28c7ffef15e
branches:  netbsd-1-5
changeset: 491005:f28c7ffef15e
user:      he <he%NetBSD.org@localhost>
date:      Fri Mar 30 21:47:02 2001 +0000

description:
Pull up revision 1.66 (requested by fvdl):
  Add some required Linux emulation bits to support the Linux
  version of VMware.

diffstat:

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

diffs (27 lines):

diff -r c31522d431b0 -r f28c7ffef15e sys/kern/sys_process.c
--- a/sys/kern/sys_process.c    Fri Mar 30 21:46:40 2001 +0000
+++ b/sys/kern/sys_process.c    Fri Mar 30 21:47:02 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sys_process.c,v 1.61.18.1 2000/07/31 02:49:19 mrg Exp $        */
+/*     $NetBSD: sys_process.c,v 1.61.18.2 2001/03/30 21:47:02 he Exp $ */
 
 /*-
  * Copyright (c) 1994 Christopher G. Demetriou.  All rights reserved.
@@ -345,7 +345,7 @@
                /* write = 0 done above. */
 #endif
 #if defined(PT_SETREGS) || defined(PT_GETREGS)
-               if (!procfs_validregs(t))
+               if (!procfs_validregs(t, NULL))
                        return (EINVAL);
                else {
                        iov.iov_base = SCARG(uap, addr);
@@ -370,7 +370,7 @@
                /* write = 0 done above. */
 #endif
 #if defined(PT_SETFPREGS) || defined(PT_GETFPREGS)
-               if (!procfs_validfpregs(t))
+               if (!procfs_validfpregs(t, NULL))
                        return (EINVAL);
                else {
                        iov.iov_base = SCARG(uap, addr);



Home | Main Index | Thread Index | Old Index