//go:build (arm64 || arm) && linux && !js // +build arm64 arm // +build linux // +build !js /* * SPDX-FileCopyrightText: © Hypermode Inc. * SPDX-License-Identifier: Apache-2.0 */ package z import ( "reflect" "unsafe" "golang.org/x/sys/unix" ) // mremap is a Linux-specific system call to remap pages in memory. This can be used in place of munmap + mmap. func mremap(data []byte, size int) ([]byte, error) { //nolint:lll // taken from const MREMAP_MAYMOVE = 0x1 header := (*reflect.SliceHeader)(unsafe.Pointer(&data)) // For ARM64, the second return argument for SYS_MREMAP is inconsistent (prior allocated size) with // other architectures, which return the size allocated mmapAddr, _, errno := unix.Syscall6( unix.SYS_MREMAP, header.Data, uintptr(header.Len), uintptr(size), uintptr(MREMAP_MAYMOVE), 0, 0, ) if errno != 0 { return nil, errno } header.Data = mmapAddr header.Cap = size header.Len = size return data, nil }