diff options
author | Sergey Bugaev <bugaevc@gmail.com> | 2021-11-07 17:56:45 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2021-11-07 17:57:05 +0100 |
commit | bca8c004cec8971d48b8411b0592f5ee6fb57bf6 (patch) | |
tree | 5f509ac61d294f6c25370cfec74d48e9d7335549 /vm | |
parent | 21b60d69fadd23e5081d1fd36beeee42f4e7976a (diff) | |
download | gnumach-bca8c004cec8971d48b8411b0592f5ee6fb57bf6.tar.gz gnumach-bca8c004cec8971d48b8411b0592f5ee6fb57bf6.tar.bz2 gnumach-bca8c004cec8971d48b8411b0592f5ee6fb57bf6.zip |
vm_region_get_proxy: rename to create_proxy
For coherency with memory_object_create_proxy.
Diffstat (limited to 'vm')
-rw-r--r-- | vm/vm_map.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vm/vm_map.c b/vm/vm_map.c index d082171a..7fe3e141 100644 --- a/vm/vm_map.c +++ b/vm/vm_map.c @@ -4809,16 +4809,16 @@ kern_return_t vm_region( } /* - * vm_region_get_proxy: + * vm_region_create_proxy: * * Gets a proxy to the region that ADDRESS belongs to, starting at the * region start, with MAX_PROTECTION and LEN limited by the region ones, * and returns it in *PORT. */ kern_return_t -vm_region_get_proxy (task_t task, vm_address_t address, - vm_prot_t max_protection, vm_size_t len, - ipc_port_t *port) +vm_region_create_proxy (task_t task, vm_address_t address, + vm_prot_t max_protection, vm_size_t len, + ipc_port_t *port) { kern_return_t ret; vm_map_entry_t entry, tmp_entry; |