Deleted Added
full compact
vm_pageout.h (114564) vm_pageout.h (118390)
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 114564 2003-05-03 04:21:16Z alc $
64 * $FreeBSD: head/sys/vm/vm_pageout.h 118390 2003-08-03 13:35:31Z phk $
65 */
66
67#ifndef _VM_VM_PAGEOUT_H_
68#define _VM_VM_PAGEOUT_H_
69
70/*
71 * Header file for pageout daemon.
72 */

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

98extern void pagedaemon_wakeup(void);
99#define VM_WAIT vm_wait()
100#define VM_WAITPFAULT vm_waitpfault()
101extern void vm_wait(void);
102extern void vm_waitpfault(void);
103
104/* XXX This is probably misplaced. */
105#ifndef NO_SWAPPING
65 */
66
67#ifndef _VM_VM_PAGEOUT_H_
68#define _VM_VM_PAGEOUT_H_
69
70/*
71 * Header file for pageout daemon.
72 */

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

98extern void pagedaemon_wakeup(void);
99#define VM_WAIT vm_wait()
100#define VM_WAITPFAULT vm_waitpfault()
101extern void vm_wait(void);
102extern void vm_waitpfault(void);
103
104/* XXX This is probably misplaced. */
105#ifndef NO_SWAPPING
106void vm_proc_swapin_all(int);
106struct swdevt;
107void vm_proc_swapin_all(struct swdevt *);
107#endif /* !NO_SWAPPING */
108
109#ifdef _KERNEL
110int vm_pageout_flush(vm_page_t *, int, int, int is_object_locked);
111#endif
112#endif /* _VM_VM_PAGEOUT_H_ */
108#endif /* !NO_SWAPPING */
109
110#ifdef _KERNEL
111int vm_pageout_flush(vm_page_t *, int, int, int is_object_locked);
112#endif
113#endif /* _VM_VM_PAGEOUT_H_ */