1 /**
2 * @file timer.h
3 *
4 * @brief
5 * The file has data structures and API definitions for the
6 * TIMER Module
7 *
8 * \par
9 * NOTE:
10 * (C) Copyright 2008, Texas Instruments, Inc.
11 *
12 * \par
13 */
14 #ifndef __TIMER_H__
15 #define __TIMER_H__
18 /**********************************************************************
19 **************************** Exported Functions **********************
20 **********************************************************************/
22 extern void timer_init(void);
23 extern Int32 timer_add (Uint32 timeout, void (*expiry)(void));
24 extern void timer_delete(Int32 handle);
25 extern void timer_run (void);
27 #endif /* __TIMER_H__ */