diff options
author | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2024-06-19 08:09:59 +0200 |
---|---|---|
committer | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2024-06-19 14:01:54 +0200 |
commit | 03d14e436b1e9ffaf839416aa4c7fb8a5e92098e (patch) | |
tree | eb5cc18eed0452e327809c228158fa67e3155e50 /core/templates | |
parent | e7dd6f11ed1ed4d72186d3a90d5f4ef42e79c4d0 (diff) | |
download | redot-engine-03d14e436b1e9ffaf839416aa4c7fb8a5e92098e.tar.gz |
WorkerThreadPool: Refactor deadlock prevention collaboration into a generic mechanism
This is strictly beyond a refactor because it also changes when the mutexes are relocked,
but that's only for extra safety.
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/command_queue_mt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/templates/command_queue_mt.h b/core/templates/command_queue_mt.h index 349404d75b..0748e9cb83 100644 --- a/core/templates/command_queue_mt.h +++ b/core/templates/command_queue_mt.h @@ -364,7 +364,7 @@ class CommandQueueMT { lock(); - WorkerThreadPool::thread_enter_command_queue_mt_flush(this); + uint32_t allowance_id = WorkerThreadPool::thread_enter_unlock_allowance_zone(&mutex); while (flush_read_ptr < command_mem.size()) { uint64_t size = *(uint64_t *)&command_mem[flush_read_ptr]; flush_read_ptr += 8; @@ -383,7 +383,7 @@ class CommandQueueMT { flush_read_ptr += size; } - WorkerThreadPool::thread_exit_command_queue_mt_flush(); + WorkerThreadPool::thread_exit_unlock_allowance_zone(allowance_id); command_mem.clear(); flush_read_ptr = 0; |