]> Git Repo - linux.git/blame - lib/dump_stack.c
Merge branch 'i2c-embedded/for-current' of git://git.pengutronix.de/git/wsa/linux
[linux.git] / lib / dump_stack.c
CommitLineData
1da177e4
LT
1/*
2 * Provide a default dump_stack() function for architectures
3 * which don't implement their own.
4 */
5
6#include <linux/kernel.h>
8bc3bcc9 7#include <linux/export.h>
1da177e4
LT
8
9void dump_stack(void)
10{
11 printk(KERN_NOTICE
12 "This architecture does not implement dump_stack()\n");
13}
14
15EXPORT_SYMBOL(dump_stack);
This page took 0.548328 seconds and 4 git commands to generate.