diff options
| author | onelin <oscar@nelin.dk> | 2025-10-31 20:30:14 +0000 |
|---|---|---|
| committer | onelin <oscar@nelin.dk> | 2025-10-31 20:30:14 +0000 |
| commit | 83042cef13c807d62ba1ed8a4068a68f6acf0ab1 (patch) | |
| tree | a610e602b9da90d1eb899b328dde09bbc38b818a /src/core/include | |
| parent | b763664e9f07e18aec54818a5fb3aabd4e7c7d2a (diff) | |
Remove unused threading snippet
Diffstat (limited to 'src/core/include')
| -rw-r--r-- | src/core/include/engine/core/thread.h | 19 |
1 files changed, 0 insertions, 19 deletions
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 <engine/core/types.h> - -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 |
