Revision d362d9e17b71978574ec25ffece5df6929ba5c52 authored by Jason Self on 18 January 2009, 18:45:51 UTC, committed by Jason Self on 18 January 2009, 18:45:51 UTC
0 parent
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