pub const SYS_MREMAP: usize = 103; // 103usizeExpand description
Remap a memory region to a new address or size.
old_addr: current virtual addressold_len: current length in bytesnew_len: desired new length in bytesflags:MREMAP_MAYMOVE(1) to allow relocationnew_addr: desired new address (only withMREMAP_MAYMOVE)
Returns the new virtual address.