Revision 858cbcdd4f7a235f609249b9ca681b7ec5d786a3 authored by Linus Torvalds on 27 October 2006, 22:36:21 UTC, committed by Linus Torvalds on 27 October 2006, 22:36:21 UTC
* master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6:
  [SPARC]: Fix bus_id[] string overflow.
2 parent s fe31eb6 + f5ef9d1
Raw File
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