vm_pageout.h (3301cc3c0a662e87eaedb3f0c0733638cd9b4188) vm_pageout.h (05f0fdd26aa1789c04ae89358880922a54d197c3)
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.4 1994/08/18 22:36:08 wollman Exp $
64 * $Id: vm_pageout.h,v 1.5 1994/08/21 07:19:45 paul Exp $
65 */
66
67#ifndef _VM_VM_PAGEOUT_H_
68#define _VM_VM_PAGEOUT_H_
69
70/*
71 * Header file for pageout daemon.
72 */

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

107 splx(s);
108}
109
110
111#ifdef KERNEL
112int vm_pageout_scan __P((void));
113void vm_pageout_page __P((vm_page_t, vm_object_t));
114void vm_pageout_cluster __P((vm_page_t, vm_object_t));
65 */
66
67#ifndef _VM_VM_PAGEOUT_H_
68#define _VM_VM_PAGEOUT_H_
69
70/*
71 * Header file for pageout daemon.
72 */

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

107 splx(s);
108}
109
110
111#ifdef KERNEL
112int vm_pageout_scan __P((void));
113void vm_pageout_page __P((vm_page_t, vm_object_t));
114void vm_pageout_cluster __P((vm_page_t, vm_object_t));
115int vm_pageout_clean __P((vm_page_t, int));
115#endif
116
117#endif
116#endif
117
118#endif