mirror of
https://github.com/apache/nuttx.git
synced 2026-05-28 03:45:50 +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:
+13
-13
@@ -2092,23 +2092,23 @@ config HRTIMER
|
|||||||
if HRTIMER
|
if HRTIMER
|
||||||
|
|
||||||
choice
|
choice
|
||||||
prompt "HRTimer management data structure type"
|
prompt "HRTimer management data structure type"
|
||||||
default HRTIMER_TREE
|
default HRTIMER_TREE
|
||||||
|
|
||||||
config HRTIMER_LIST
|
config HRTIMER_LIST
|
||||||
bool "List-based timer management"
|
bool "List-based timer management"
|
||||||
help
|
---help---
|
||||||
Use a simple list to manage timers. This method is
|
Use a simple list to manage timers. This method is
|
||||||
suitable for systems with a small number of timers.
|
suitable for systems with a small number of timers.
|
||||||
It is more memory-efficient but may become slower
|
It is more memory-efficient but may become slower
|
||||||
as the number of timers increases.
|
as the number of timers increases.
|
||||||
|
|
||||||
config HRTIMER_TREE
|
config HRTIMER_TREE
|
||||||
bool "RB-tree-based timer management"
|
bool "RB-tree-based timer management"
|
||||||
help
|
---help---
|
||||||
Use a red-black tree to manage timers. This method
|
Use a red-black tree to manage timers. This method
|
||||||
provides better performance for systems with many
|
provides better performance for systems with many
|
||||||
timers, at the cost of slightly higher memory usage.
|
timers, at the cost of slightly higher memory usage.
|
||||||
|
|
||||||
endchoice
|
endchoice
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user