Skip to content

Commit

Permalink
fix rt_channel lock. (#8244)
Browse files Browse the repository at this point in the history
  • Loading branch information
geniusgogo authored Nov 10, 2023
1 parent 5896412 commit 9acebb0
Show file tree
Hide file tree
Showing 4 changed files with 245 additions and 181 deletions.
4 changes: 4 additions & 0 deletions components/lwp/lwp.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ int lwp_component_init(void)
{
LOG_E("%s: lwp_pid_init() failed", __func__);
}
else if ((rc = rt_channel_component_init()) != RT_EOK)
{
LOG_E("%s: rt_channel_component_init failed", __func__);
}
return rc;
}
INIT_COMPONENT_EXPORT(lwp_component_init);
Expand Down
Loading

0 comments on commit 9acebb0

Please sign in to comment.