Magellan Linux

Contents of /alx-src/tags/kernel26-2.6.12-alx-r9/lib/dump_stack.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 630 - (show annotations) (download)
Wed Mar 4 11:03:09 2009 UTC (15 years, 3 months ago) by niro
File MIME type: text/plain
File size: 290 byte(s)
Tag kernel26-2.6.12-alx-r9
1 /*
2 * Provide a default dump_stack() function for architectures
3 * which don't implement their own.
4 */
5
6 #include <linux/kernel.h>
7 #include <linux/module.h>
8
9 void dump_stack(void)
10 {
11 printk(KERN_NOTICE
12 "This architecture does not implement dump_stack()\n");
13 }
14
15 EXPORT_SYMBOL(dump_stack);