X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/55e303ae13a4cf49d70f2294092726f2fffb9ef2..13fec9890cf095cc781fdf7b8917cb03bf32dd4c:/osfmk/mach/host_priv.defs diff --git a/osfmk/mach/host_priv.defs b/osfmk/mach/host_priv.defs index dece96202..1bc09c837 100644 --- a/osfmk/mach/host_priv.defs +++ b/osfmk/mach/host_priv.defs @@ -1,24 +1,21 @@ /* - * Copyright (c) 2000-2003 Apple Computer, Inc. All rights reserved. + * Copyright (c) 2000-2004 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * - * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved. + * The contents of this file constitute Original Code as defined in and + * are subject to the Apple Public Source License Version 1.1 (the + * "License"). You may not use this file except in compliance with the + * License. Please obtain a copy of the License at + * http://www.apple.com/publicsource and read it before using this file. * - * This file contains Original Code and/or Modifications of Original Code - * as defined in and that are subject to the Apple Public Source License - * Version 2.0 (the 'License'). You may not use this file except in - * compliance with the License. Please obtain a copy of the License at - * http://www.opensource.apple.com/apsl/ and read it before using this - * file. - * - * The Original Code and all software distributed under the License are - * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER + * This Original Code and all software distributed under the License are + * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. - * Please see the License for the specific language governing rights and - * limitations under the License. + * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the + * License for the specific language governing rights and limitations + * under the License. * * @APPLE_LICENSE_HEADER_END@ */ @@ -125,7 +122,7 @@ routine vm_wire( task : vm_map_t; address : vm_address_t; size : vm_size_t; - access : vm_prot_t); + desired_access : vm_prot_t); /* * Specify that the target thread must always be able @@ -165,8 +162,8 @@ routine vm_allocate_cpm( * Get list of processors on this host. */ routine host_processors( - host_priv : host_priv_t; - out processor_list : processor_array_t); + host_priv : host_priv_t; + out out_processor_list : processor_array_t); /* @@ -276,12 +273,18 @@ routine host_load_symbol_table( symtab : pointer_t); /* - * Make the target task swappable or unswappable. + * Specify that the range of the virtual address space + * of the target task must not cause page faults for + * the indicated accesses. + * + * [ To unwire the pages, specify VM_PROT_NONE. ] */ -routine task_swappable( +routine mach_vm_wire( host_priv : host_priv_t; - target_task : task_t; - make_swappable : boolean_t); + task : vm_map_t; + address : mach_vm_address_t; + size : mach_vm_size_t; + desired_access : vm_prot_t); /* * JMM - Keep all processor_set related items at the end for easy