summaryrefslogtreecommitdiff
path: root/src/core/include/engine
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/include/engine')
-rw-r--r--src/core/include/engine/core/thread.h19
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