Increase ringbuffer size further - allow for many more listeners on shared memory regions.

This commit is contained in:
Daniel Patterson
2018-08-29 13:26:42 -07:00
parent 99d78713a2
commit 1756208f3f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -146,7 +146,7 @@ template <typename Data> struct SharedMonitor
// like two-turnstile reusable barrier or boost/interprocess/sync/spin/condition.hpp
// fail if a waiter is killed.
static constexpr int buffer_size = 4096;
static constexpr int buffer_size = 4096 * 4;
struct InternalData
{