Skip to content

Commit 0cea0a0

Browse files
committed
fixup: error
1 parent f7afb6d commit 0cea0a0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

components/drivers/ipc/completion_up.c

+3-1
Original file line numberDiff line numberDiff line change
@@ -124,14 +124,16 @@ rt_err_t rt_completion_wait_flags(struct rt_completion *completion,
124124

125125
if (completion->susp_thread_n_flag != waiting_stat)
126126
{
127-
/* */
127+
/* completion may be completed after we suspend */
128128
timeout = 0;
129129
goto __try_again;
130130
}
131131
else
132132
{
133+
/* no changes, waiting failed */
133134
result = thread->error;
134135
result = result > 0 ? -result : result;
136+
RT_ASSERT(result != RT_EOK);
135137
}
136138
}
137139
}

0 commit comments

Comments
 (0)