⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 time.c

📁 Linux内核源代码 为压缩文件 是<<Linux内核>>一书中的源代码
💻 C
字号:
/* * 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);        kstat.irqs[0][irq]++;        printk("indy_8254timer_irq: Whoops, should not have gotten this IRQ\n");        prom_getchar();        prom_imode();        irq_exit(cpu);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -