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
No known key found for this signature in database
GPG Key ID: 19C12BE1725A028B
2 changed files with 2 additions and 2 deletions

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
{

View File

@ -1,6 +1,6 @@
{
"name": "osrm",
"version": "5.18.0-moarshm.2",
"version": "5.18.0-moarshm.3",
"private": false,
"description": "The Open Source Routing Machine is a high performance routing engine written in C++14 designed to run on OpenStreetMap data.",
"dependencies": {