Merge pull request #76754 from RandomShaper/mq_less_lock

Avoid redundant locking in CallQueue
This commit is contained in:
Rémi Verschelde 2023-05-08 12:20:53 +02:00
commit 353efd774f
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -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;