mirror of
https://github.com/apache/nuttx-apps.git
synced 2025-10-18 00:11:20 +08:00

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>
25 lines
549 B
Plaintext
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
|