提交 4127cc13 编写于 作者: B Bernard Xiong

[Kernel] Move the ++/-- operator outside of condition.

上级 6e89f70e
...@@ -42,12 +42,16 @@ rt_base_t rt_cpus_lock(void) ...@@ -42,12 +42,16 @@ rt_base_t rt_cpus_lock(void)
pcpu = rt_cpu_self(); pcpu = rt_cpu_self();
if (pcpu->current_thread != RT_NULL) if (pcpu->current_thread != RT_NULL)
{ {
if (pcpu->current_thread->cpus_lock_nest++ == 0) register rt_uint16_t lock_nest = pcpu->current_thread->cpus_lock_nest;
pcpu->current_thread->cpus_lock_nest++;
if (lock_nest == 0)
{ {
pcpu->current_thread->scheduler_lock_nest++; pcpu->current_thread->scheduler_lock_nest++;
rt_hw_spin_lock(&_cpus_lock); rt_hw_spin_lock(&_cpus_lock);
} }
} }
return level; return level;
} }
RTM_EXPORT(rt_cpus_lock); RTM_EXPORT(rt_cpus_lock);
...@@ -61,7 +65,9 @@ void rt_cpus_unlock(rt_base_t level) ...@@ -61,7 +65,9 @@ void rt_cpus_unlock(rt_base_t level)
if (pcpu->current_thread != RT_NULL) if (pcpu->current_thread != RT_NULL)
{ {
if (--pcpu->current_thread->cpus_lock_nest == 0) pcpu->current_thread->cpus_lock_nest--;
if (pcpu->current_thread->cpus_lock_nest == 0)
{ {
pcpu->current_thread->scheduler_lock_nest--; pcpu->current_thread->scheduler_lock_nest--;
rt_hw_spin_unlock(&_cpus_lock); rt_hw_spin_unlock(&_cpus_lock);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册