time.c
来自「根据添加了fs2410平台的arch目录」· C语言 代码 · 共 22 行
C
22 行
/* * time.c: Generic SGI handler for (spurious) 8254 interrupts * * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com) */#include <linux/interrupt.h>#include <linux/kernel_stat.h>#include <asm/sgialib.h>void indy_8254timer_irq(void){ int cpu = smp_processor_id(); int irq = 4; irq_enter(cpu, irq); kstat.irqs[0][irq]++; printk("indy_8254timer_irq: Whoops, should not have gotten this IRQ\n"); prom_getchar(); ArcEnterInteractiveMode(); irq_exit(cpu, irq);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?