deprecated rt_system_tick_init function.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1931 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
bernard.xiong@gmail.com
2012-01-31 12:17:47 +00:00
parent e1b5d48c9b
commit 7ebea8fe65
2 changed files with 4 additions and 3 deletions
+3 -2
View File
@@ -21,7 +21,7 @@
#include <rthw.h>
#include <rtthread.h>
static rt_tick_t rt_tick;
static rt_tick_t rt_tick = 0;
extern void rt_timer_check(void);
@@ -29,10 +29,11 @@ extern void rt_timer_check(void);
* This function will init system tick and set it to zero.
* @ingroup SystemInit
*
* @deprecated since 1.1.0, this function does not need to be invoked
* in the system initialization.
*/
void rt_system_tick_init(void)
{
rt_tick = 0;
}
/**