https://github.com/torvalds/linux
Raw File
Tip revision: da5cabf80e2433131bf0ed8993abc0f7ea618c73 authored by Linus Torvalds on 16 August 2010, 00:41:37 UTC
Linux 2.6.36-rc1
Tip revision: da5cabf
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