We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e981e3 commit 77b5098Copy full SHA for 77b5098
components/drivers/src/completion.c
@@ -39,6 +39,7 @@ void rt_completion_init(struct rt_completion *completion)
39
rt_list_init(&completion->suspended_list);
40
rt_hw_interrupt_enable(level);
41
}
42
+RTM_EXPORT(rt_completion_init);
43
44
rt_err_t rt_completion_wait(struct rt_completion *completion,
45
rt_int32_t timeout)
@@ -105,6 +106,7 @@ rt_err_t rt_completion_wait(struct rt_completion *completion,
105
106
107
return result;
108
109
+RTM_EXPORT(rt_completion_wait);
110
111
void rt_completion_done(struct rt_completion *completion)
112
{
@@ -139,3 +141,5 @@ void rt_completion_done(struct rt_completion *completion)
139
141
140
142
143
144
+RTM_EXPORT(rt_completion_done);
145
+
0 commit comments