提交 8e52ae19 编写于 作者: 郝飞虎's avatar 郝飞虎

modules:esp-hosted: Changing the name of the sleep function prevents conflicts...

modules:esp-hosted: Changing the name of the sleep function prevents conflicts when CONFIG_POSIX is enabled
上级 191a17a2
流水线 #18636 已通过 ,包含阶段
in 6 minute 和 50 second
......@@ -181,7 +181,7 @@ int hosted_timer_stop(void *timer_handle);
* 0 : success
* <0 : failure
*/
unsigned int msleep(unsigned int mseconds);
unsigned int hosted_msleep(unsigned int mseconds);
/* sleep is sleep in seconds
* Input parameters
......@@ -190,7 +190,7 @@ unsigned int msleep(unsigned int mseconds);
* 0 : success
* <0 : failure
*/
unsigned int sleep(unsigned int seconds);
unsigned int hosted_sleep(unsigned int seconds);
/*
* serial_drv_open function opens driver interface.
......
......@@ -174,13 +174,13 @@ void *hosted_create_semaphore(int init_value)
return *sem_id;
}
unsigned int sleep(unsigned int seconds)
unsigned int hosted_sleep(unsigned int seconds)
{
k_msleep(seconds * 1000);
return 0;
}
unsigned int msleep(unsigned int mseconds)
unsigned int hosted_msleep(unsigned int mseconds)
{
k_msleep(mseconds);
return 0;
......
支持 Markdown
0% or
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册