blob: 69a997232a3cc5ea25e0289c1e74b37fff70784c (
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 struct __thread_self self = { 0 };
return &self;
}
|