/* * Copyright (c) 2024, Tenstorrent AI ULC * * SPDX-License-Identifier: Apache-2.0 */ #include #include #include #include int mprotect(void *addr, size_t len, int prot) { ARG_UNUSED(addr); ARG_UNUSED(len); ARG_UNUSED(prot); errno = ENOSYS; return -1; }