blob: 86a814da4ed416608737f08c7db9ba65671097ca (
plain)
1
2
3
4
5
6
7
8
|
#include <__thread.h> // for __thread_self
#include <threads.h> // for thrd_current, thrd_t
thrd_t thrd_current(void)
{
static _Thread_local struct __thread_self self = { 0 };
return &self;
}
|