From 0f30d227497418c6d3bef7d52244407e30454504 Mon Sep 17 00:00:00 2001 From: Kacper Date: Mon, 22 Dec 2025 23:27:56 +0100 Subject: Added c11 threads, fixed some locks and add *_unlocked functions --- lib/libc/internal/thrd/Kbuild | 1 + lib/libc/internal/thrd/self.c | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 lib/libc/internal/thrd/Kbuild create mode 100644 lib/libc/internal/thrd/self.c (limited to 'lib/libc/internal/thrd') diff --git a/lib/libc/internal/thrd/Kbuild b/lib/libc/internal/thrd/Kbuild new file mode 100644 index 00000000..c3817f75 --- /dev/null +++ b/lib/libc/internal/thrd/Kbuild @@ -0,0 +1 @@ +obj-y += self.o diff --git a/lib/libc/internal/thrd/self.c b/lib/libc/internal/thrd/self.c new file mode 100644 index 00000000..b083223f --- /dev/null +++ b/lib/libc/internal/thrd/self.c @@ -0,0 +1,6 @@ +#include + +__attribute__((__always_inline__)) void *__libc_thread_self(void) +{ + return __libc_tcb_get(); +} -- cgit v1.2.3