Files
nuttx-apps/benchmarks/fio/Kconfig
chao an 27846ffec7 libc/elf: rename modlib to libelf
Renaming "modlib" to "libelf" is more in line with the implementation content,
which makes it easier for individual developers to understand the capabilities of this module.

CONFIG_LIBC_MODLIB -> CONFIG_LIBC_ELF

Signed-off-by: chao an <anchao.archer@bytedance.com>
2025-04-11 09:43:07 +08:00

25 lines
549 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config BENCHMARK_FIO
tristate "Flexible I/O Tester"
default n
depends on LIBC_ELF && LIBC_DLFCN
---help---
https://github.com/axboe/fio Fio spawns a number of threads or processes
doing a particular type of I/O action as specified by the user.
if BENCHMARK_FIO
config BENCHMARK_FIO_PRIORITY
int "fio task priority"
default 100
config BENCHMARK_FIO_STACKSIZE
int "fio stack size"
default 65536
endif