mirror of
https://github.com/apache/nuttx.git
synced 2026-02-06 04:22:26 +08:00
sched: Fix Kconfig style
- Remove spaces from Kconfig - Add TABs - Replace help => ---help--- Signed-off-by: simbit18 <simbit18@gmail.com>
This commit is contained in:
@@ -2092,23 +2092,23 @@ config HRTIMER
|
||||
if HRTIMER
|
||||
|
||||
choice
|
||||
prompt "HRTimer management data structure type"
|
||||
default HRTIMER_TREE
|
||||
prompt "HRTimer management data structure type"
|
||||
default HRTIMER_TREE
|
||||
|
||||
config HRTIMER_LIST
|
||||
bool "List-based timer management"
|
||||
help
|
||||
Use a simple list to manage timers. This method is
|
||||
suitable for systems with a small number of timers.
|
||||
It is more memory-efficient but may become slower
|
||||
as the number of timers increases.
|
||||
bool "List-based timer management"
|
||||
---help---
|
||||
Use a simple list to manage timers. This method is
|
||||
suitable for systems with a small number of timers.
|
||||
It is more memory-efficient but may become slower
|
||||
as the number of timers increases.
|
||||
|
||||
config HRTIMER_TREE
|
||||
bool "RB-tree-based timer management"
|
||||
help
|
||||
Use a red-black tree to manage timers. This method
|
||||
provides better performance for systems with many
|
||||
timers, at the cost of slightly higher memory usage.
|
||||
bool "RB-tree-based timer management"
|
||||
---help---
|
||||
Use a red-black tree to manage timers. This method
|
||||
provides better performance for systems with many
|
||||
timers, at the cost of slightly higher memory usage.
|
||||
|
||||
endchoice
|
||||
|
||||
|
||||
Reference in New Issue
Block a user