Kconfig 701 B

1234567891011121314151617181920212223242526272829
  1. menu "Profiling support"
  2. depends on EXPERIMENTAL
  3. config PROFILING
  4. bool "Profiling support (EXPERIMENTAL)"
  5. help
  6. Say Y here to enable the extended profiling support mechanisms used
  7. by profilers such as OProfile.
  8. config OPROFILE
  9. tristate "OProfile system profiling (EXPERIMENTAL)"
  10. depends on PROFILING
  11. help
  12. OProfile is a profiling system capable of profiling the
  13. whole system, include the kernel, kernel modules, libraries,
  14. and applications.
  15. If unsure, say N.
  16. config HARDWARE_PM
  17. tristate "Hardware Performance Monitor Profiling"
  18. depends on PROFILING
  19. help
  20. take use of hardware performance monitor to profiling the kernel
  21. and application.
  22. If unsure, say N.
  23. endmenu