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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/include/asm-arm/arch-arc/time.h
  3.  *
  4.  *  Copyright (C) 1996-2000 Russell King.
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License version 2 as
  8.  * published by the Free Software Foundation.
  9.  *
  10.  *  Changelog:
  11.  *   24-Sep-1996 RMK Created
  12.  *   10-Oct-1996 RMK Brought up to date with arch-sa110eval
  13.  *   04-Dec-1997 RMK Updated for new arch/arm/time.c
  14.  */
  15. extern void ioctime_init(void);
  16. static void timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  17. {
  18. do_timer(regs);
  19. do_set_rtc();
  20. do_profile(regs);
  21. }
  22. /*
  23.  * Set up timer interrupt.
  24.  */
  25. static inline void setup_timer(void)
  26. {
  27. ioctime_init();
  28. timer_irq.handler = timer_interrupt;
  29. setup_arm_irq(IRQ_TIMER, &timer_irq);
  30. }