[BACK]Return to dump_stack.c CVS log [TXT][DIR] Up to [Development] / linux-2.6-xfs-OLD / linux / lib

File: [Development] / linux-2.6-xfs-OLD / linux / lib / dump_stack.c (download)

Revision 1.2, Thu Oct 9 17:58:06 2003 UTC (14 years ago) by lord
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +2 -0 lines

merge up to 2.6.0-test7

/*
 * 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);