1#ifndef _LIBC_BITS_THREAD_H 2#define _LIBC_BITS_THREAD_H 3 4#include <sys/types.h> 5 6struct thread_create_params { 7 uint32_t entry_point; 8 uint32_t stack_start; 9 uint32_t stack_size; 10}; 11typedef struct thread_create_params thread_create_params_t; 12 13#endif // _LIBC_BITS_THREAD_H