sysrq.c
来自「优龙2410linux2.6.8内核源代码」· C语言 代码 · 共 57 行
C
57 行
/* * Copyright (C) 2001 Jeff Dike (jdike@karaya.com) * Licensed under the GPL */#include "linux/sched.h"#include "linux/kernel.h"#include "linux/module.h"#include "asm/page.h"#include "asm/processor.h"#include "sysrq.h"#include "user_util.h"void show_trace(unsigned long * stack){ int i; unsigned long addr; if (!stack) stack = (unsigned long*) &stack; printk("Call Trace: "); i = 1; while (((long) stack & (THREAD_SIZE-1)) != 0) { addr = *stack++; if (__kernel_text_address(addr)) { if (i && ((i % 6) == 0)) printk("\n "); printk("[<%08lx>] ", addr); i++; } } printk("\n");}/* * The architecture-independent dump_stack generator */void dump_stack(void){ unsigned long stack; show_trace(&stack);}EXPORT_SYMBOL(dump_stack);/* * Overrides for Emacs so that we follow Linus's tabbing style. * Emacs will notice this stuff at the end of the file and automatically * adjust the settings for this buffer only. This must remain at the end * of the file. * --------------------------------------------------------------------------- * Local variables: * c-file-style: "linux" * End: */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?