/* * Copyright (c) 2024, Tenstorrent AI ULC * * SPDX-License-Identifier: Apache-2.0 */ #include #include #include #include int mlockall(int flags) { ARG_UNUSED(flags); errno = ENOSYS; return -1; } int munlockall(void) { errno = ENOSYS; return -1; }