You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/*
|
|
* Provide a default dump_stack() function for architectures
|
|
* which don't implement their own.
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/module.h>
|
|
|
|
void dump_stack(void)
|
|
{
|
|
printk(KERN_NOTICE
|
|
"This architecture does not implement dump_stack()\n");
|
|
}
|
|
|
|
EXPORT_SYMBOL(dump_stack);
|
|
|