time.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:0k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * time.c: Generic SGI handler for (spurious) 8254 interrupts
  3.  *
  4.  * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
  5.  */
  6. #include <linux/interrupt.h>
  7. #include <linux/kernel_stat.h>
  8. #include <asm/sgialib.h>
  9. void indy_8254timer_irq(void)
  10. {
  11. int cpu = smp_processor_id();
  12. int irq = 4;
  13. irq_enter(cpu, irq);
  14. kstat.irqs[0][irq]++;
  15. printk("indy_8254timer_irq: Whoops, should not have gotten this IRQn");
  16. prom_getchar();
  17. ArcEnterInteractiveMode();
  18. irq_exit(cpu, irq);
  19. }