pub unsafe extern "C" fn sys_mem_blocks_free_contiguous(
mem_block: *mut sys_mem_blocks,
block: *mut c_void,
count: usize,
) -> i32Expand description
@brief Free contiguous multiple memory blocks
Free contiguous multiple memory blocks
@param[in] mem_block Pointer to memory block object. @param[in] block Pointer to the first memory block @param[in] count Number of blocks to free.
@retval 0 Successful @retval -EINVAL Invalid argument supplied. @retval -EFAULT Invalid pointer supplied.