mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-05-28 20:47:22 +00:00
zephyr: Add missing pthread library functions (#3291)
For use with WAMR_BUILD_LIB_PTHREAD, add os_thread_detach, os_thread_exit, os_cond_broadcast. Signed-off-by: Maxim Kolchurin <maxim.kolchurin@gmail.com>
This commit is contained in:
parent
bcc2a2d2e1
commit
8756d29e19
|
@ -577,4 +577,34 @@ os_thread_get_stack_boundary()
|
||||||
|
|
||||||
void
|
void
|
||||||
os_thread_jit_write_protect_np(bool enabled)
|
os_thread_jit_write_protect_np(bool enabled)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
int
|
||||||
|
os_thread_detach(korp_tid thread)
|
||||||
|
{
|
||||||
|
(void)thread;
|
||||||
|
return BHT_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
os_thread_exit(void *retval)
|
||||||
|
{
|
||||||
|
(void)retval;
|
||||||
|
os_thread_cleanup();
|
||||||
|
k_thread_abort(k_current_get());
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
os_cond_broadcast(korp_cond *cond)
|
||||||
|
{
|
||||||
|
os_thread_wait_node *node;
|
||||||
|
k_mutex_lock(&cond->wait_list_lock, K_FOREVER);
|
||||||
|
node = cond->thread_wait_list;
|
||||||
|
while (node) {
|
||||||
|
os_thread_wait_node *next = node->next;
|
||||||
|
k_sem_give(&node->sem);
|
||||||
|
node = next;
|
||||||
|
}
|
||||||
|
k_mutex_unlock(&cond->wait_list_lock);
|
||||||
|
return BHT_OK;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user