1#
2# For a description of the syntax of this configuration file,
3# see docs/Kconfig-language.txt.
4#
5
6menu "Process Utilities"
7
8config FEATURE_FAST_TOP
9	bool "Faster /proc scanning code (+100 bytes)"
10	default n  # all "fast or small" options default to small
11	help
12	This option makes top and ps ~20% faster (or 20% less CPU hungry),
13	but code size is slightly bigger.
14
15config FEATURE_SHOW_THREADS
16	bool "Support thread display in ps/pstree/top"
17	default y
18	depends on PS || TOP || PSTREE
19	help
20	Enables the ps -T option, showing of threads in pstree,
21	and 'h' command in top.
22
23INSERT
24
25endmenu
26