zephyr/subsys/profiling/perf/Kconfig
Yong Cong Sin 42362c6fcc subsys/profiling: relocate stack unwind backends
Relocate stack unwind backends from `arch/` to perf's
`backends/` folder, just like logging/shell/..

Signed-off-by: Yong Cong Sin <ycsin@meta.com>
Signed-off-by: Yong Cong Sin <yongcong.sin@gmail.com>
2024-08-20 14:45:23 +02:00

24 lines
430 B
Plaintext

# Copyright (c) 2023 KNS Group LLC (YADRO)
#
# SPDX-License-Identifier: Apache-2.0
config PROFILING_PERF
bool "Perf support"
depends on !SMP
depends on SHELL
depends on PROFILING_PERF_HAS_BACKEND
help
Enable perf shell command.
if PROFILING_PERF
config PROFILING_PERF_BUFFER_SIZE
int "Perf buffer size"
default 2048
help
Size of buffer used by perf to save stack trace samples.
endif
rsource "backends/Kconfig"