Skip to content

Commit 5d62115

Browse files
committed
fixup: error
1 parent f7afb6d commit 5d62115

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed

components/drivers/ipc/completion_up.c

+5-10
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,6 @@ rt_err_t rt_completion_wait_flags(struct rt_completion *completion,
7777
thread = rt_thread_self();
7878

7979
level = rt_spin_lock_irqsave(&_completion_lock);
80-
81-
__try_again:
8280
if (RT_COMPLETION_FLAG(completion) != RT_COMPLETED)
8381
{
8482
/* only one thread can suspend on complete */
@@ -120,18 +118,15 @@ rt_err_t rt_completion_wait_flags(struct rt_completion *completion,
120118
/* do schedule */
121119
rt_schedule();
122120

121+
result = thread->error;
122+
result = result > 0 ? -result : result;
123+
123124
level = rt_spin_lock_irqsave(&_completion_lock);
124125

125126
if (completion->susp_thread_n_flag != waiting_stat)
126127
{
127-
/* */
128-
timeout = 0;
129-
goto __try_again;
130-
}
131-
else
132-
{
133-
result = thread->error;
134-
result = result > 0 ? -result : result;
128+
/* status had been modified after we suspend */
129+
goto __exit;
135130
}
136131
}
137132
}

0 commit comments

Comments
 (0)