vm_init.c (1fd0b0588f11fe61e5329c403c3f82a3f4d26fab) | vm_init.c (47cfdb166d16af183216e459e4e48aff9d2beabf) |
---|---|
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.15 1997/02/22 09:48:20 peter Exp $ | 64 * $Id: vm_init.c,v 1.16 1997/08/02 14:33:26 bde Exp $ |
65 */ 66 67/* 68 * Initialize the Virtual Memory subsystem. 69 */ 70 | 65 */ 66 67/* 68 * Initialize the Virtual Memory subsystem. 69 */ 70 |
71#include "opt_diagnostic.h" 72 |
|
71#include <sys/param.h> 72#include <sys/kernel.h> 73#include <sys/systm.h> 74 75#include <vm/vm.h> 76#include <vm/vm_prot.h> 77#include <sys/lock.h> 78#include <vm/vm_object.h> --- 40 unchanged lines hidden --- | 73#include <sys/param.h> 74#include <sys/kernel.h> 75#include <sys/systm.h> 76 77#include <vm/vm.h> 78#include <vm/vm_prot.h> 79#include <sys/lock.h> 80#include <vm/vm_object.h> --- 40 unchanged lines hidden --- |