opuntiaOS - an operating system targeting x86 and ARMv7
at master 315 B view raw
1#ifndef _KERNEL_LIBKERN_BITS_THREAD_H 2#define _KERNEL_LIBKERN_BITS_THREAD_H 3 4#include <libkern/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 // _KERNEL_LIBKERN_BITS_THREAD_H