Files
linux/lib/dump_stack.c

16 lines
290 B
C
Raw Permalink Normal View History

2016-12-19 07:03:25 +01:00
/*
* Provide a default dump_stack() function for architectures
* which don't implement their own.
*/
#include <linux/kernel.h>
#include <linux/export.h>
void dump_stack(void)
{
printk(KERN_NOTICE
"This architecture does not implement dump_stack()\n");
}
EXPORT_SYMBOL(dump_stack);