https://github.com/torvalds/linux
Raw File
Tip revision: e07cccf4046978df10f2e13fe2b99b2f9b3a65db authored by Linus Torvalds on 05 September 2009, 23:38:12 UTC
Linux 2.6.31-rc9
Tip revision: e07cccf
dump_stack.c
/*
 * 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);
back to top