mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-24 22:30:13 +00:00
[compiler-rt][Fuchsia] Replace _zx_vmar_allocate_old call
This is the deprecated legacy interface, replace it with the current _zx_vmar_allocate one. Differential Revision: https://reviews.llvm.org/D56360 llvm-svn: 350488
This commit is contained in:
parent
4fc8c44382
commit
5c43496fa3
@ -210,10 +210,10 @@ uptr ReservedAddressRange::Init(uptr init_size, const char *name,
|
||||
uintptr_t base;
|
||||
zx_handle_t vmar;
|
||||
zx_status_t status =
|
||||
_zx_vmar_allocate_old(_zx_vmar_root_self(), 0, init_size,
|
||||
ZX_VM_FLAG_CAN_MAP_READ | ZX_VM_FLAG_CAN_MAP_WRITE |
|
||||
ZX_VM_FLAG_CAN_MAP_SPECIFIC,
|
||||
&vmar, &base);
|
||||
_zx_vmar_allocate(
|
||||
_zx_vmar_root_self(),
|
||||
ZX_VM_CAN_MAP_READ | ZX_VM_CAN_MAP_WRITE | ZX_VM_CAN_MAP_SPECIFIC,
|
||||
0, init_size, &vmar, &base);
|
||||
if (status != ZX_OK)
|
||||
ReportMmapFailureAndDie(init_size, name, "zx_vmar_allocate", status);
|
||||
base_ = reinterpret_cast<void *>(base);
|
||||
|
Loading…
Reference in New Issue
Block a user