summaryrefslogtreecommitdiffstats
path: root/core/os/thread.cpp
diff options
context:
space:
mode:
authorAdam Scott <ascott.ca@gmail.com>2023-12-01 13:39:09 -0500
committerAdam Scott <ascott.ca@gmail.com>2024-01-17 13:58:29 -0500
commitbd70b8e1f643dbf7252be9bc367e0de0f82d722d (patch)
treede81ebb037ede5994d3e817a2a788488d0f47977 /core/os/thread.cpp
parent107f2961ccfac179af7682eb5f6e7ea91e80040c (diff)
downloadredot-engine-bd70b8e1f643dbf7252be9bc367e0de0f82d722d.tar.gz
Add THREADS_ENABLED macro in order to compile Godot to run on the main thread
Diffstat (limited to 'core/os/thread.cpp')
-rw-r--r--core/os/thread.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/core/os/thread.cpp b/core/os/thread.cpp
index 2ba90ba42c..afc74364f6 100644
--- a/core/os/thread.cpp
+++ b/core/os/thread.cpp
@@ -33,19 +33,22 @@
#include "thread.h"
+#ifdef THREADS_ENABLED
#include "core/object/script_language.h"
#include "core/templates/safe_refcount.h"
-Thread::PlatformFunctions Thread::platform_functions;
-
SafeNumeric<uint64_t> Thread::id_counter(1); // The first value after .increment() is 2, hence by default the main thread ID should be 1.
thread_local Thread::ID Thread::caller_id = Thread::UNASSIGNED_ID;
+#endif
+
+Thread::PlatformFunctions Thread::platform_functions;
void Thread::_set_platform_functions(const PlatformFunctions &p_functions) {
platform_functions = p_functions;
}
+#ifdef THREADS_ENABLED
void Thread::callback(ID p_caller_id, const Settings &p_settings, Callback p_callback, void *p_userdata) {
Thread::caller_id = p_caller_id;
if (platform_functions.set_priority) {
@@ -107,4 +110,6 @@ Thread::~Thread() {
}
}
+#endif // THREADS_ENABLED
+
#endif // PLATFORM_THREAD_OVERRIDE