Linux Kernel
3.7.1
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Groups
Pages
lib
dump_stack.c
Go to the documentation of this file.
1
/*
2
* Provide a default dump_stack() function for architectures
3
* which don't implement their own.
4
*/
5
6
#include <linux/kernel.h>
7
#include <linux/export.h>
8
9
void
dump_stack
(
void
)
10
{
11
printk
(
KERN_NOTICE
12
"This architecture does not implement dump_stack()\n"
);
13
}
14
15
EXPORT_SYMBOL
(
dump_stack
);
Generated on Thu Jan 10 2013 14:55:32 for Linux Kernel by
1.8.2