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

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

Revision 1.1, Mon Nov 4 18:51:29 2002 UTC (14 years, 11 months ago) by hch
Branch: MAIN
CVS Tags: XFS-1_3_0pre1, HEAD

Merge up to 2.4.20-rc1

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