]>
git.saurik.com Git - apple/xnu.git/blob - osfmk/vm/cpm.h
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
32 * Author: Alan Langerman
33 * Date: April 1995 and January 1996
35 * Contiguous physical memory allocator.
39 #include <mach_counters.h>
42 * Return a linked list of physically contiguous
43 * wired pages. Caller is responsible for disposal
46 * These pages are all in "gobbled" state when .
49 cpm_allocate(vm_size_t size
, vm_page_t
*list
, boolean_t wire
);
52 * CPM-specific event counters.
54 #define VM_CPM_COUNTERS (MACH_KDB && MACH_COUNTERS && VM_CPM)
56 #define cpm_counter(foo) foo
57 #else /* VM_CPM_COUNTERS */
58 #define cpm_counter(foo)
59 #endif /* VM_CPM_COUNTERS */
61 #endif /* _VM_CPM_H_ */