summaryrefslogtreecommitdiff
path: root/lib/libc/thread/thrd_current.c
blob: adbb4191591c65b7ec2cad081f0fd00eee225ca6 (plain)
1
2
3
4
5
6
7
8
9
#include <thread.h>
#include <threads.h>
#include <unistd.h>

thrd_t thrd_current(void)
{
	static _Thread_local struct __thread_self self = { 0 };
	return &self;
}