Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Config.src « procps - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7fcce98c5a17b22d414c0ea9d23bf276c782bc28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#
# For a description of the syntax of this configuration file,
# see docs/Kconfig-language.txt.
#

menu "Process Utilities"

config FEATURE_FAST_TOP
	bool "Faster /proc scanning code (+100 bytes)"
	default n  # all "fast or small" options default to small
	help
	This option makes top and ps ~20% faster (or 20% less CPU hungry),
	but code size is slightly bigger.

config FEATURE_SHOW_THREADS
	bool "Support thread display in ps/pstree/top"
	default y
	depends on PS || TOP || PSTREE
	help
	Enables the ps -T option, showing of threads in pstree,
	and 'h' command in top.

INSERT

endmenu