Deleted Added
full compact
mem.c (25558) mem.c (26373)
1/*-
2 * Copyright (c) 1988 University of Utah.
3 * Copyright (c) 1982, 1986, 1990 The Regents of the University of California.
4 * All rights reserved.
5 *
6 * This code is derived from software contributed to Berkeley by
7 * the Systems Programming Group of the University of Utah Computer
8 * Science Department, and code derived from software contributed to

--- 24 unchanged lines hidden (view full) ---

33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
38 *
39 * from: Utah $Hdr: mem.c 1.13 89/10/08$
40 * from: @(#)mem.c 7.2 (Berkeley) 5/9/91
1/*-
2 * Copyright (c) 1988 University of Utah.
3 * Copyright (c) 1982, 1986, 1990 The Regents of the University of California.
4 * All rights reserved.
5 *
6 * This code is derived from software contributed to Berkeley by
7 * the Systems Programming Group of the University of Utah Computer
8 * Science Department, and code derived from software contributed to

--- 24 unchanged lines hidden (view full) ---

33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
38 *
39 * from: Utah $Hdr: mem.c 1.13 89/10/08$
40 * from: @(#)mem.c 7.2 (Berkeley) 5/9/91
41 * $Id: mem.c,v 1.43 1997/05/07 20:02:37 peter Exp $
41 * $Id: mem.c,v 1.44 1997/05/07 20:32:41 peter Exp $
42 */
43
44/*
45 * Memory special file
46 */
47
48#include "opt_perfmon.h"
49

--- 10 unchanged lines hidden (view full) ---

60#include <sys/proc.h>
61
62#include <machine/cpu.h>
63#include <machine/random.h>
64#include <machine/psl.h>
65#ifdef PERFMON
66#include <machine/perfmon.h>
67#endif
42 */
43
44/*
45 * Memory special file
46 */
47
48#include "opt_perfmon.h"
49

--- 10 unchanged lines hidden (view full) ---

60#include <sys/proc.h>
61
62#include <machine/cpu.h>
63#include <machine/random.h>
64#include <machine/psl.h>
65#ifdef PERFMON
66#include <machine/perfmon.h>
67#endif
68#include <i386/isa/intr_machdep.h>
68
69#include <vm/vm.h>
70#include <vm/vm_param.h>
71#include <sys/lock.h>
72#include <vm/vm_prot.h>
73#include <vm/pmap.h>
74#include <vm/vm_extern.h>
75

--- 466 unchanged lines hidden ---
69
70#include <vm/vm.h>
71#include <vm/vm_param.h>
72#include <sys/lock.h>
73#include <vm/vm_prot.h>
74#include <vm/pmap.h>
75#include <vm/vm_extern.h>
76

--- 466 unchanged lines hidden ---