Home
last modified time | relevance | path

Searched refs:sub_thread (Results 1 – 3 of 3) sorted by relevance

/Zephyr-latest/samples/subsys/llext/edk/ext3/src/
Dmain.c37 struct k_thread *sub_thread; in start() local
47 sub_thread = k_object_alloc(K_OBJ_THREAD); in start()
48 printk("[ext3]%p - %p\n", sub_stack, sub_thread); in start()
49 k_thread_create(sub_thread, sub_stack, STACKSIZE, tick_sub, NULL, NULL, in start()
/Zephyr-latest/samples/subsys/llext/edk/k-ext1/src/
Dmain.c37 struct k_thread *sub_thread; in start() local
47 sub_thread = k_object_alloc(K_OBJ_THREAD); in start()
48 k_thread_create(sub_thread, sub_stack, STACKSIZE, tick_sub, NULL, NULL, in start()
/Zephyr-latest/samples/subsys/zbus/benchmark/src/
Dsub.c32 static int sub_thread(void *sub_ref, void *ptr2, void *ptr3) in sub_thread() function
67 K_THREAD_DEFINE(name##_sub_id, CONSUMER_STACK_SIZE, sub_thread, &name, NULL, NULL, 3, 0, 0);