Deleted Added
full compact
vm_pageout.h (9507) vm_pageout.h (10358)
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.12 1995/05/30 08:16:20 rgrimes Exp $
64 * $Id: vm_pageout.h,v 1.13 1995/07/13 08:48:41 davidg Exp $
65 */
66
67#ifndef _VM_VM_PAGEOUT_H_
68#define _VM_VM_PAGEOUT_H_
69
70/*
71 * Header file for pageout daemon.
72 */

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

118 }
119 tsleep(&cnt.v_free_count, PVM, "vmwait", 0);
120 }
121 splx(s);
122}
123
124
125#ifdef KERNEL
65 */
66
67#ifndef _VM_VM_PAGEOUT_H_
68#define _VM_VM_PAGEOUT_H_
69
70/*
71 * Header file for pageout daemon.
72 */

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

118 }
119 tsleep(&cnt.v_free_count, PVM, "vmwait", 0);
120 }
121 splx(s);
122}
123
124
125#ifdef KERNEL
126void vm_daemon __P((void));
127int vm_pageout_scan __P((void));
128void vm_pageout_page __P((vm_page_t, vm_object_t));
129void vm_pageout_cluster __P((vm_page_t, vm_object_t));
130int vm_pageout_clean __P((vm_page_t, int));
131
132#endif
133
134#endif
126int vm_pageout_scan __P((void));
127void vm_pageout_page __P((vm_page_t, vm_object_t));
128void vm_pageout_cluster __P((vm_page_t, vm_object_t));
129int vm_pageout_clean __P((vm_page_t, int));
130
131#endif
132
133#endif