Blame view

arch/um/Kconfig.debug 1.05 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
  menu "Kernel hacking"
  
  source "lib/Kconfig.debug"
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4
5
  config GPROF
  	bool "Enable gprof support"
054211aca   Karol Swietlicki   uml: GPROF needs ...
6
  	depends on DEBUG_INFO && FRAME_POINTER
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
7
  	help
4c9e13851   Jeff Dike   uml: style fixes ...
8
9
  	  This allows profiling of a User-Mode Linux kernel with the gprof
  	  utility.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
10

0ba9d3f91   Karol Swietlicki   uml: fix URLs in ...
11
  	  See <http://user-mode-linux.sourceforge.net/old/gprof.html> for more
4c9e13851   Jeff Dike   uml: style fixes ...
12
  	  details.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
13

4c9e13851   Jeff Dike   uml: style fixes ...
14
15
  	  If you're involved in UML kernel development and want to use gprof,
  	  say Y.  If you're unsure, say N.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
16
17
18
  
  config GCOV
  	bool "Enable gcov support"
42fda6638   Jeff Dike   uml: throw out CO...
19
  	depends on DEBUG_INFO
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
20
  	help
4c9e13851   Jeff Dike   uml: style fixes ...
21
22
  	  This option allows developers to retrieve coverage data from a UML
  	  session.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
23

0ba9d3f91   Karol Swietlicki   uml: fix URLs in ...
24
  	  See <http://user-mode-linux.sourceforge.net/old/gprof.html> for more
4c9e13851   Jeff Dike   uml: style fixes ...
25
  	  details.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
26

4c9e13851   Jeff Dike   uml: style fixes ...
27
28
  	  If you're involved in UML kernel development and want to use gcov,
  	  say Y.  If you're unsure, say N.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
29

e18eecb8b   Jeff Dike   Add generic exit-...
30
31
32
33
34
35
36
37
38
  config DEBUG_STACK_USAGE
  	bool "Stack utilization instrumentation"
  	default N
  	help
  	  Track the maximum kernel stack usage - this will look at each
  	  kernel stack at process exit and log it if it's the deepest
  	  stack seen so far.
  
  	  This option will slow down process creation and destruction somewhat.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
39
  endmenu