Deleted Added
full compact
vm_pageout.h (90935) vm_pageout.h (92029)
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 * $FreeBSD: head/sys/vm/vm_pageout.h 90935 2002-02-19 18:34:02Z silby $
64 * $FreeBSD: head/sys/vm/vm_pageout.h 92029 2002-03-10 21:52:48Z eivind $
65 */
66
67#ifndef _VM_VM_PAGEOUT_H_
68#define _VM_VM_PAGEOUT_H_
69
70/*
71 * Header file for pageout daemon.
72 */

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

104extern void vm_wait __P((void));
105extern void vm_waitpfault __P((void));
106
107#ifdef _KERNEL
108void vm_pageout_page __P((vm_page_t, vm_object_t));
109void vm_pageout_cluster __P((vm_page_t, vm_object_t));
110int vm_pageout_flush __P((vm_page_t *, int, int));
111void vm_pageout_page_free __P((vm_page_t));
65 */
66
67#ifndef _VM_VM_PAGEOUT_H_
68#define _VM_VM_PAGEOUT_H_
69
70/*
71 * Header file for pageout daemon.
72 */

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

104extern void vm_wait __P((void));
105extern void vm_waitpfault __P((void));
106
107#ifdef _KERNEL
108void vm_pageout_page __P((vm_page_t, vm_object_t));
109void vm_pageout_cluster __P((vm_page_t, vm_object_t));
110int vm_pageout_flush __P((vm_page_t *, int, int));
111void vm_pageout_page_free __P((vm_page_t));
112
113#endif
112#endif
114
115#endif
113#endif /* _VM_VM_PAGEOUT_H_ */