summaryrefslogtreecommitdiff
path: root/lib/dump_stack.c
blob: 53bff4c8452b52ce2d46da276d6dd5519dea0cbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * 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);