vm_pager.c (50ce7ff49929eaaecbef85e15eae9b782ab8934d) | vm_pager.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_pager.c,v 1.31 1997/12/29 00:25:06 dyson Exp $ | 64 * $Id: vm_pager.c,v 1.32 1998/01/24 02:01:46 dyson Exp $ |
65 */ 66 67/* 68 * Paging space routine stubs. Emulates a matchmaker-like interface 69 * for builtin pagers. 70 */ 71 | 65 */ 66 67/* 68 * Paging space routine stubs. Emulates a matchmaker-like interface 69 * for builtin pagers. 70 */ 71 |
72#include "opt_diagnostic.h" 73 |
|
72#include <sys/param.h> 73#include <sys/systm.h> 74#include <sys/buf.h> 75#include <sys/ucred.h> 76#include <sys/malloc.h> 77 78#include <vm/vm.h> 79#include <vm/vm_param.h> --- 265 unchanged lines hidden --- | 74#include <sys/param.h> 75#include <sys/systm.h> 76#include <sys/buf.h> 77#include <sys/ucred.h> 78#include <sys/malloc.h> 79 80#include <vm/vm.h> 81#include <vm/vm_param.h> --- 265 unchanged lines hidden --- |