Config.src 591 B

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