From owner-cvs-sys Sun Feb 4 13:21:02 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id NAA07601 for cvs-sys-outgoing; Sun, 4 Feb 1996 13:21:02 -0800 (PST) Received: (from davidg@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id NAA07593 Sun, 4 Feb 1996 13:20:58 -0800 (PST) Date: Sun, 4 Feb 1996 13:20:58 -0800 (PST) From: David Greenman Message-Id: <199602042120.NAA07593@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/i386/include md_var.h pmap.h Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk davidg 96/02/04 13:20:56 Modified: sys/i386/i386 locore.s pmap.c swtch.s vm_machdep.c sys/i386/include md_var.h pmap.h Log: Rewrote cpu_fork so that it doesn't use pmap_activate, and removed pmap_activate since it's not used anymore. Changed cpu_fork so that it uses one line of inline assembly rather than calling mvesp() to get the current stack pointer. Removed mvesp() since it is no longer being used. Revision Changes Path 1.62 +1 -8 src/sys/i386/i386/locore.s 1.75 +1 -10 src/sys/i386/i386/pmap.c 1.29 +1 -5 src/sys/i386/i386/swtch.s 1.54 +11 -9 src/sys/i386/i386/vm_machdep.c 1.7 +1 -2 src/sys/i386/include/md_var.h 1.33 +1 -16 src/sys/i386/include/pmap.h