未验证 提交 348bd83b 编写于 作者: H HubretXie 提交者: GitHub

【修复】修复计算中间值溢出问题

rt_tick_from_millisecond
当入参较大时,计算中间值会出现溢出情况,导致转换结果出错
上级 c9d88a8e
......@@ -107,15 +107,20 @@ void rt_tick_increase(void)
*
* @return the calculated tick
*/
int rt_tick_from_millisecond(rt_int32_t ms)
rt_tick_t rt_tick_from_millisecond(rt_int32_t ms)
{
int tick;
rt_tick_t tick;
if (ms < 0)
{
tick = RT_WAITING_FOREVER;
}
else
tick = (RT_TICK_PER_SECOND * ms + 999) / 1000;
{
tick = RT_TICK_PER_SECOND * (ms / 1000);
tick += (RT_TICK_PER_SECOND * (ms%1000) + 999) / 1000;
}
/* return the calculated tick */
return tick;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册