From 83042cef13c807d62ba1ed8a4068a68f6acf0ab1 Mon Sep 17 00:00:00 2001 From: onelin Date: Fri, 31 Oct 2025 21:30:14 +0100 Subject: Remove unused threading snippet --- src/core/include/engine/core/thread.h | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 src/core/include/engine/core/thread.h (limited to 'src/core/include/engine') diff --git a/src/core/include/engine/core/thread.h b/src/core/include/engine/core/thread.h deleted file mode 100644 index 3d2e6b9..0000000 --- a/src/core/include/engine/core/thread.h +++ /dev/null @@ -1,19 +0,0 @@ -#ifndef THREAD_H -#define THREAD_H - -#ifdef __cplusplus -extern "C" { -#endif - -#include - -typedef u64 thread_t; -typedef void*(thread_fn(void*)); - -thread_t thread_spawn(thread_fn* routine, void* arg); -void thread_join(thread_t thread); - -#ifdef __cplusplus -} -#endif -#endif -- cgit v1.3