POSIX mlock() and munlock() require an MMU as well as DEMAND_PAGING. Signed-off-by: Chris Friedt <cfriedt@tenstorrent.com>
72 lines
2.3 KiB
Text
72 lines
2.3 KiB
Text
# Copyright (c) 2024 BayLibre SAS
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menu "POSIX memory"
|
|
|
|
config POSIX_PAGE_SIZE
|
|
hex
|
|
# TODO: something similar and arch-independent for MPUs
|
|
default MMU_PAGE_SIZE if MMU
|
|
default 0x40
|
|
help
|
|
This option is not user-configurable.
|
|
|
|
config POSIX_SHARED_MEMORY_OBJECTS
|
|
bool "POSIX shared memory objects"
|
|
select SYS_HASH_FUNC32
|
|
select SYS_HASH_FUNC32_DJB2
|
|
select FDTABLE
|
|
select POSIX_MAPPED_FILES
|
|
help
|
|
Select 'y' here and Zephyr will provide implementations of shm_open() and shm_unlink().
|
|
|
|
For more information, please see
|
|
https://pubs.opengroup.org/onlinepubs/9699919799.orig/functions/V2_chap02.html
|
|
https://pubs.opengroup.org/onlinepubs/9699919799/xrat/V4_port.html#tag_24_03_04
|
|
|
|
config POSIX_MAPPED_FILES
|
|
bool "POSIX memory-mapped files"
|
|
# disable Xtensa for now until linker issues are resolved
|
|
imply MMU if (CPU_HAS_MMU && !XTENSA)
|
|
help
|
|
Select 'y' here and Zephyr will provide support for mmap(), msync(), and munmap().
|
|
|
|
For more information, please see
|
|
https://pubs.opengroup.org/onlinepubs/9699919799.orig/functions/V2_chap02.html
|
|
https://pubs.opengroup.org/onlinepubs/9699919799/xrat/V4_port.html#tag_24_03_04
|
|
|
|
if POSIX_MAPPED_FILES
|
|
|
|
config POSIX_MEMLOCK
|
|
bool "POSIX memory locking"
|
|
help
|
|
Select 'y' here and Zephyr will provide support for mlockall() and munlockall().
|
|
|
|
For more information, please see
|
|
https://pubs.opengroup.org/onlinepubs/9699919799.orig/functions/V2_chap02.html
|
|
https://pubs.opengroup.org/onlinepubs/9699919799/xrat/V4_port.html#tag_24_03_04
|
|
|
|
config POSIX_MEMLOCK_RANGE
|
|
bool "POSIX range memory locking"
|
|
imply MMU if (CPU_HAS_MMU && ARCH_HAS_DEMAND_PAGING)
|
|
imply DEMAND_PAGING
|
|
help
|
|
Select 'y' here and Zephyr will provide support for mlock() and munlock().
|
|
|
|
For more information, please see
|
|
https://pubs.opengroup.org/onlinepubs/9699919799.orig/functions/V2_chap02.html
|
|
https://pubs.opengroup.org/onlinepubs/9699919799/xrat/V4_port.html#tag_24_03_04
|
|
|
|
endif
|
|
|
|
config POSIX_MEMORY_PROTECTION
|
|
bool "POSIX memory protection"
|
|
help
|
|
Select 'y' here and Zephyr will provide support for mprotect().
|
|
|
|
For more information, please see
|
|
https://pubs.opengroup.org/onlinepubs/9699919799.orig/functions/V2_chap02.html
|
|
https://pubs.opengroup.org/onlinepubs/9699919799/xrat/V4_port.html#tag_24_03_04
|
|
|
|
endmenu
|