Deleted Added
full compact
vm_pageout.h (32702) vm_pageout.h (42957)
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_pageout.h,v 1.22 1998/01/12 01:44:46 dyson Exp $
64 * $Id: vm_pageout.h,v 1.23 1998/01/22 17:30:43 dyson Exp $
65 */
66
67#ifndef _VM_VM_PAGEOUT_H_
68#define _VM_VM_PAGEOUT_H_
69
70/*
71 * Header file for pageout daemon.
72 */

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

95 */
96
97/*
98 * Signal pageout-daemon and wait for it.
99 */
100
101extern void pagedaemon_wakeup __P((void));
102#define VM_WAIT vm_wait()
65 */
66
67#ifndef _VM_VM_PAGEOUT_H_
68#define _VM_VM_PAGEOUT_H_
69
70/*
71 * Header file for pageout daemon.
72 */

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

95 */
96
97/*
98 * Signal pageout-daemon and wait for it.
99 */
100
101extern void pagedaemon_wakeup __P((void));
102#define VM_WAIT vm_wait()
103#define VM_AWAIT vm_await()
103extern void vm_wait __P((void));
104extern void vm_wait __P((void));
105extern void vm_await __P((void));
104
105#ifdef KERNEL
106void vm_pageout_page __P((vm_page_t, vm_object_t));
107void vm_pageout_cluster __P((vm_page_t, vm_object_t));
108int vm_pageout_flush __P((vm_page_t *, int, int));
109void vm_pageout_page_free __P((vm_page_t));
110
111#endif
112
113#endif
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
114
115#endif