#ifndef __THREAD_H__ #define __THREAD_H__ #include #include #include #include int thread_create(int (*func)(void *), void *args, unsigned int flags, struct task_ids *new_ids); /* For same space */ #define STACK_SIZE 0x1000 #define THREADS_TOTAL 10 #endif /* __THREAD_H__ */