[errno code][-RT_ERROR] fix that use RT_ERROR without -

This commit is contained in:
Meco Man
2023-03-20 00:06:16 -04:00
committed by Man, Jianting (Meco)
parent de963feef4
commit 0f461e870c
272 changed files with 639 additions and 644 deletions
+2 -2
View File
@@ -161,7 +161,7 @@ rt_err_t rt_mp_detach(struct rt_mempool *mp)
/* get next suspend thread */
thread = rt_list_entry(mp->suspend_thread.next, struct rt_thread, tlist);
/* set error code to RT_ERROR */
/* set error code to -RT_ERROR */
thread->error = -RT_ERROR;
/*
@@ -281,7 +281,7 @@ rt_err_t rt_mp_delete(rt_mp_t mp)
/* get next suspend thread */
thread = rt_list_entry(mp->suspend_thread.next, struct rt_thread, tlist);
/* set error code to RT_ERROR */
/* set error code to -RT_ERROR */
thread->error = -RT_ERROR;
/*
+1 -1
View File
@@ -369,7 +369,7 @@ RTM_EXPORT(rt_timer_create);
*
* @param timer the timer to be deleted
*
* @return the operation status, RT_EOK on OK; RT_ERROR on error
* @return the operation status, RT_EOK on OK; -RT_ERROR on error
*/
rt_err_t rt_timer_delete(rt_timer_t timer)
{