2 * Copyright (c) 2000-2004 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@
26 * Mach Operating System
27 * Copyright (c) 1991 Carnegie Mellon University
28 * All Rights Reserved.
30 * Permission to use, copy, modify and distribute this software and its
31 * documentation is hereby granted, provided that both the copyright
32 * notice and this permission notice appear in all copies of the
33 * software, derivative works or modified versions, and any portions
34 * thereof, and that both notices appear in supporting documentation.
36 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS
37 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
38 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
40 * Carnegie Mellon requests users of this software to return to
42 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
43 * School of Computer Science
44 * Carnegie Mellon University
45 * Pittsburgh PA 15213-3890
47 * any improvements or extensions that they make and grant Carnegie the
48 * rights to redistribute these changes.
53 #ifndef _VM_MEMORY_OBJECT_H_
54 #define _VM_MEMORY_OBJECT_H_
56 #include <mach_pagemap.h>
58 #include <mach/boolean.h>
59 #include <mach/mach_types.h>
60 #include <mach/memory_object_types.h>
61 #include <ipc/ipc_types.h>
64 memory_object_default_t
memory_manager_default_reference(
65 vm_size_t
*cluster_size
);
68 kern_return_t
memory_manager_default_check(void);
71 void memory_manager_default_init(void);
74 void memory_object_control_bootstrap(void);
76 memory_object_control_t
memory_object_control_allocate(
80 void memory_object_control_collapse(
81 memory_object_control_t control
,
85 vm_object_t
memory_object_control_to_vm_object(
86 memory_object_control_t control
);
89 mach_port_t
convert_mo_control_to_port(
90 memory_object_control_t control
);
92 extern void memory_object_control_disable(
93 memory_object_control_t control
);
96 memory_object_control_t
convert_port_to_mo_control(
100 mach_port_t
convert_memory_object_to_port(
101 memory_object_t object
);
104 memory_object_t
convert_port_to_memory_object(
107 extern upl_t
convert_port_to_upl(
110 extern ipc_port_t
convert_upl_to_port( upl_t
);
112 __private_extern__
void upl_no_senders(ipc_port_t
, mach_port_mscount_t
);
114 extern kern_return_t
memory_object_free_from_cache(
119 extern kern_return_t
memory_object_iopl_request(
121 memory_object_offset_t offset
,
124 upl_page_info_array_t user_page_list
,
125 unsigned int *page_list_count
,
129 extern kern_return_t
memory_object_pages_resident(
130 memory_object_control_t control
,
131 boolean_t
* has_pages_resident
);
133 #endif /* _VM_MEMORY_OBJECT_H_ */