summaryrefslogtreecommitdiffstats
path: root/core/os/semaphore.h
diff options
context:
space:
mode:
authorPedro J. Estébanez <pedrojrulez@gmail.com>2024-01-05 17:39:26 +0100
committerPedro J. Estébanez <pedrojrulez@gmail.com>2024-01-08 12:45:42 +0100
commit9444d297ed0b1dbc7c05fa0bf2e06241335f5057 (patch)
tree5bdc7bc52b0919631d805cc751b5d82d28019d70 /core/os/semaphore.h
parentfe8c217b7cc85b1f35dc54eb342a8451828a7418 (diff)
downloadredot-engine-9444d297ed0b1dbc7c05fa0bf2e06241335f5057.tar.gz
WorkerThreadPool: Overhaul scheduling and synchronization
This commits rewrites the sync logic in a way that the `use_system_threads_for_low_priority_tasks` setting, which was added due to the lack of a cross-platform wait-for-multiple-objects functionality, can be removed (it's as if it was effectively hardcoded to `false`). With the new implementation, we have the best of both worlds: threads don't have to poll, plus no bespoke threads are used. In addition, regarding deadlock prevention, since not every possible case of wait-deadlock could be avoided, this commits removes the current best-effort avoidance mechanisms and keeps only a simple, pessimistic way of detection. It turns out that the only current user of deadlock prevention, ResourceLoader, works fine with it and so every possible situation in resource loading is now properly handled, with no possibilities of deadlocking. There's a comment in the code with further details. Lastly, a potential for load tasks never being awaited/disposed is cleared.
Diffstat (limited to 'core/os/semaphore.h')
-rw-r--r--core/os/semaphore.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/core/os/semaphore.h b/core/os/semaphore.h
index 8bb1529bbd..b8ae35b86b 100644
--- a/core/os/semaphore.h
+++ b/core/os/semaphore.h
@@ -58,10 +58,12 @@ private:
#endif
public:
- _ALWAYS_INLINE_ void post() const {
+ _ALWAYS_INLINE_ void post(uint32_t p_count = 1) const {
std::lock_guard lock(mutex);
- count++;
- condition.notify_one();
+ count += p_count;
+ for (uint32_t i = 0; i < p_count; ++i) {
+ condition.notify_one();
+ }
}
_ALWAYS_INLINE_ void wait() const {