LibC: Add stub for `pthread_detach`
This commit is contained in:
parent
a85841ca76
commit
01626b4c9f
|
@ -255,6 +255,13 @@ pthread_create_error:
|
||||||
return return_code;
|
return return_code;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int pthread_detach(pthread_t thread)
|
||||||
|
{
|
||||||
|
(void)thread;
|
||||||
|
dwarnln("TODO: pthread_detach");
|
||||||
|
return ENOTSUP;
|
||||||
|
}
|
||||||
|
|
||||||
void pthread_exit(void* value_ptr)
|
void pthread_exit(void* value_ptr)
|
||||||
{
|
{
|
||||||
#if not __disable_thread_local_storage
|
#if not __disable_thread_local_storage
|
||||||
|
|
Loading…
Reference in New Issue