提交 edcdd126 编写于 作者: mysterywolf's avatar mysterywolf

[kernel][ipc] 移除mutex RT_IPC_FLAG_FIFO 功能

上级 b3fa063a
......@@ -548,6 +548,8 @@ RTM_EXPORT(rt_sem_control);
*/
rt_err_t rt_mutex_init(rt_mutex_t mutex, const char *name, rt_uint8_t flag)
{
(void)flag;
/* parameter check */
RT_ASSERT(mutex != RT_NULL);
......@@ -562,8 +564,8 @@ rt_err_t rt_mutex_init(rt_mutex_t mutex, const char *name, rt_uint8_t flag)
mutex->original_priority = 0xFF;
mutex->hold = 0;
/* set flag */
mutex->parent.parent.flag = flag;
/* set flag and it can only be RT_IPC_FLAG_PRIO */
mutex->parent.parent.flag = RT_IPC_FLAG_PRIO;
return RT_EOK;
}
......@@ -609,6 +611,7 @@ RTM_EXPORT(rt_mutex_detach);
rt_mutex_t rt_mutex_create(const char *name, rt_uint8_t flag)
{
struct rt_mutex *mutex;
(void)flag;
RT_DEBUG_NOT_IN_INTERRUPT;
......@@ -625,8 +628,8 @@ rt_mutex_t rt_mutex_create(const char *name, rt_uint8_t flag)
mutex->original_priority = 0xFF;
mutex->hold = 0;
/* set flag */
mutex->parent.parent.flag = flag;
/* set flag and it can only be RT_IPC_FLAG_PRIO */
mutex->parent.parent.flag = RT_IPC_FLAG_PRIO;
return mutex;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册