Tenok
A Linux-like Real-Time Operating System for Robotics and Internet of Things
kthread.h
Go to the documentation of this file.
1 
4 #ifndef __KTHREAD_H__
5 #define __KTHREAD_H__
6 
7 #include <kernel/task.h>
8 
17 int kthread_create(task_func_t task_func, uint8_t priority, int stack_size);
18 
19 #endif
int kthread_create(task_func_t task_func, uint8_t priority, int stack_size)
Create new kernel thread.
Definition: kernel.c:486