sysrq.c

来自「Linux Kernel 2.6.9 for OMAP1710」· C语言 代码 · 共 62 行

C
62
字号
/*  * 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);void show_stack(struct task_struct *task, unsigned long *sp){	show_trace(sp);}/* * 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 + -
显示快捷键?