1 /*
2  * Copyright (c) 2024, Tenstorrent AI ULC
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <errno.h>
8 #include <stddef.h>
9 #include <sys/types.h>
10 
11 #include <zephyr/posix/sys/mman.h>
12 
mlockall(int flags)13 int mlockall(int flags)
14 {
15 	ARG_UNUSED(flags);
16 
17 	errno = ENOSYS;
18 	return -1;
19 }
20 
munlockall(void)21 int munlockall(void)
22 {
23 	errno = ENOSYS;
24 	return -1;
25 }
26