pub unsafe extern "C" fn hipMemAddressReserve(
ptr: *mut *mut c_void,
size: usize,
alignment: usize,
addr: *mut c_void,
flags: c_ulonglong,
) -> hipError_tExpand description
@brief Reserves an address range
@param [out] ptr - starting address of the reserved range. @param [in] size - size of the reservation. @param [in] alignment - alignment of the address. @param [in] addr - requested starting address of the range. @param [in] flags - currently unused, must be zero. @returns #hipSuccess, #hipErrorInvalidValue, #hipErrorNotSupported @warning This API is marked as Beta. While this feature is complete, it can change and might have outstanding issues.
@note This API is implemented on Linux and is under development on Microsoft Windows.