Blame view

arch/m32r/Kconfig.debug 848 Bytes
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
  menu "Kernel hacking"
  
  source "lib/Kconfig.debug"
  
  config DEBUG_STACKOVERFLOW
  	bool "Check for stack overflows"
  	depends on DEBUG_KERNEL
e1637f437   Adrian Bunk   [PATCH] m32r: add...
8
9
10
  	help
  	  This option will cause messages to be printed if free stack space
  	  drops below a certain limit.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
11

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
12
  config DEBUG_PAGEALLOC
4a2f0acf0   Andrew Morton   [PATCH] kconfig: ...
13
  	bool "Debug page memory allocations"
697ae16ac   Al Viro   [PATCH] Kconfig f...
14
  	depends on DEBUG_KERNEL && BROKEN
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
15
16
17
18
19
20
21
22
23
24
25
26
27
28
  	help
  	  Unmap pages from the kernel linear mapping after free_pages().
  	  This results in a large slowdown, but helps to find certain types
  	  of memory corruptions.
  
  config FRAME_POINTER
  	bool "Compile the kernel with frame pointers"
  	help
  	  If you say Y here the resulting kernel image will be slightly larger
  	  and slower, but it will give very useful debugging information.
  	  If you don't debug the kernel, you can say N, but we may not be able
  	  to solve problems without frame pointers.
  
  endmenu