summaryrefslogtreecommitdiffstats
path: root/core/object/message_queue.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-05-08 12:20:53 +0200
committerRémi Verschelde <rverschelde@gmail.com>2023-05-08 12:20:53 +0200
commit353efd774fe323f124180fda8dae2f1af018aea1 (patch)
tree811e34a62f4d516c5854cdfae7b68849ddb11188 /core/object/message_queue.h
parentfe6cd734ad17fe838d9c080e1538db5d43272e49 (diff)
parent5a0c186bc06023e9c54b1deb4965fbdcb3607ae5 (diff)
downloadredot-engine-353efd774fe323f124180fda8dae2f1af018aea1.tar.gz
Merge pull request #76754 from RandomShaper/mq_less_lock
Avoid redundant locking in CallQueue
Diffstat (limited to 'core/object/message_queue.h')
-rw-r--r--core/object/message_queue.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/object/message_queue.h b/core/object/message_queue.h
index 68969dfd39..2349c6d869 100644
--- a/core/object/message_queue.h
+++ b/core/object/message_queue.h
@@ -61,7 +61,7 @@ private:
};
Mutex mutex;
- typedef PagedAllocator<Page, true> Allocator;
+ typedef PagedAllocator<Page, false> Allocator;
Allocator *allocator = nullptr;
bool allocator_is_custom = false;