fasttimer.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* $Id: fasttimer.h,v 1.3 2004/05/14 10:19:19 starvik Exp $
  2. * linux/include/asm-cris/fasttimer.h
  3. *
  4. * Fast timers for ETRAX100LX
  5. * This may be useful in other OS than Linux so use 2 space indentation...
  6. * Copyright (C) 2000, 2002 Axis Communications AB
  7. */
  8. #include <linux/time.h> /* struct timeval */
  9. #include <linux/timex.h>
  10. #ifdef CONFIG_ETRAX_FAST_TIMER
  11. typedef void fast_timer_function_type(unsigned long);
  12. struct fast_timer{ /* Close to timer_list */
  13. struct fast_timer *next;
  14. struct fast_timer *prev;
  15. struct timeval tv_set;
  16. struct timeval tv_expires;
  17. unsigned long delay_us;
  18. fast_timer_function_type *function;
  19. unsigned long data;
  20. const char *name;
  21. };
  22. extern struct fast_timer *fast_timer_list;
  23. void start_one_shot_timer(struct fast_timer *t,
  24. fast_timer_function_type *function,
  25. unsigned long data,
  26. unsigned long delay_us,
  27. const char *name);
  28. int del_fast_timer(struct fast_timer * t);
  29. /* return 1 if deleted */
  30. void schedule_usleep(unsigned long us);
  31. void fast_timer_init(void);
  32. #endif