summaryrefslogtreecommitdiffstats
path: root/core/os/semaphore.h
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/semaphore.h
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/semaphore.h')
-rw-r--r--core/os/semaphore.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/core/os/semaphore.h b/core/os/semaphore.h
index b8ae35b86b..19ef1dedc0 100644
--- a/core/os/semaphore.h
+++ b/core/os/semaphore.h
@@ -31,6 +31,10 @@
#ifndef SEMAPHORE_H
#define SEMAPHORE_H
+#include <cstdint>
+
+#ifdef THREADS_ENABLED
+
#include "core/error/error_list.h"
#include "core/typedefs.h"
#ifdef DEBUG_ENABLED
@@ -132,4 +136,17 @@ public:
#endif
};
+#else // No threads.
+
+class Semaphore {
+public:
+ void post(uint32_t p_count = 1) const {}
+ void wait() const {}
+ bool try_wait() const {
+ return true;
+ }
+};
+
+#endif // THREADS_ENABLED
+
#endif // SEMAPHORE_H