#include #include #include int csp_thread_create(csp_thread_return_t (* routine)(void *)__attribute__((stdcall)), const char * const thread_name, unsigned short stack_depth, void * parameters, unsigned int priority, csp_thread_handle_t * handle) { HANDLE taskHandle = (HANDLE) _beginthreadex(NULL, stack_depth, routine, parameters, 0, 0); if( taskHandle == 0 ) return CSP_ERR_NOMEM; // Failure *handle = taskHandle; return CSP_ERR_NONE; }