blob: 1eace4bd661672ffdcf339f34d513ff5b80ad2d8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001menu "Kernel hacking"
2
3source "lib/Kconfig.debug"
4
Linus Torvalds1da177e2005-04-16 15:20:36 -07005config GPROF
6 bool "Enable gprof support"
Jeff Dike42fda662007-10-16 01:26:50 -07007 depends on DEBUG_INFO
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 help
9 This allows profiling of a User-Mode Linux kernel with the gprof
10 utility.
11
12 See <http://user-mode-linux.sourceforge.net/gprof.html> for more
13 details.
14
15 If you're involved in UML kernel development and want to use gprof,
16 say Y. If you're unsure, say N.
17
18config GCOV
19 bool "Enable gcov support"
Jeff Dike42fda662007-10-16 01:26:50 -070020 depends on DEBUG_INFO
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 help
22 This option allows developers to retrieve coverage data from a UML
23 session.
24
25 See <http://user-mode-linux.sourceforge.net/gprof.html> for more
26 details.
27
28 If you're involved in UML kernel development and want to use gcov,
29 say Y. If you're unsure, say N.
30
Jeff Dikee18eecb2007-07-15 23:38:48 -070031config DEBUG_STACK_USAGE
32 bool "Stack utilization instrumentation"
33 default N
34 help
35 Track the maximum kernel stack usage - this will look at each
36 kernel stack at process exit and log it if it's the deepest
37 stack seen so far.
38
39 This option will slow down process creation and destruction somewhat.
Linus Torvalds1da177e2005-04-16 15:20:36 -070040endmenu