repo.or.cz
/
linux-2.6
/
kmemtrace.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[IA64] use goto to jump out do/while_each_thread
[linux-2.6/kmemtrace.git]
/
lib
/
dump_stack.c
blob
53bff4c8452b52ce2d46da276d6dd5519dea0cbf
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/module.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
);