Deleted Added
full compact
vm_init.c (7090) vm_init.c (9507)
1/*
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * The Mach Operating System project at Carnegie-Mellon University.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

56 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
57 * School of Computer Science
58 * Carnegie Mellon University
59 * Pittsburgh PA 15213-3890
60 *
61 * any improvements or extensions that they make and grant Carnegie the
62 * rights to redistribute these changes.
63 *
1/*
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * The Mach Operating System project at Carnegie-Mellon University.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

56 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
57 * School of Computer Science
58 * Carnegie Mellon University
59 * Pittsburgh PA 15213-3890
60 *
61 * any improvements or extensions that they make and grant Carnegie the
62 * rights to redistribute these changes.
63 *
64 * $Id: vm_init.c,v 1.5 1995/01/09 16:05:42 davidg Exp $
64 * $Id: vm_init.c,v 1.6 1995/03/16 18:17:11 bde Exp $
65 */
66
67/*
68 * Initialize the Virtual Memory subsystem.
69 */
70
71#include <sys/param.h>
72#include <sys/systm.h>
73
74#include <vm/vm.h>
75#include <vm/vm_page.h>
76#include <vm/vm_kern.h>
65 */
66
67/*
68 * Initialize the Virtual Memory subsystem.
69 */
70
71#include <sys/param.h>
72#include <sys/systm.h>
73
74#include <vm/vm.h>
75#include <vm/vm_page.h>
76#include <vm/vm_kern.h>
77#include <vm/vm_pager.h>
77
78/*
79 * vm_init initializes the virtual memory system.
80 * This is done only by the first cpu up.
81 *
82 * The start and end address of physical memory is passed in.
83 */
84

--- 19 unchanged lines hidden ---
78
79/*
80 * vm_init initializes the virtual memory system.
81 * This is done only by the first cpu up.
82 *
83 * The start and end address of physical memory is passed in.
84 */
85

--- 19 unchanged lines hidden ---