From 280328aee8decdaf63ccfe8f5ea4e451b3a608fd Mon Sep 17 00:00:00 2001 From: Qiuwen Lu Date: Wed, 16 Sep 2020 13:26:23 +0800 Subject: 调整VNODE中生产者、消费者通信队列数量的上限到128,避免多个应用同时打开同一网卡时超过上限数量。 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- infra/include/common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infra/include/common.h b/infra/include/common.h index acf8983..a28b53f 100644 --- a/infra/include/common.h +++ b/infra/include/common.h @@ -32,11 +32,11 @@ extern "C" { #endif #ifndef MR_CONS_MAX -#define MR_CONS_MAX 16 +#define MR_CONS_MAX 128 #endif #ifndef MR_PROD_MAX -#define MR_PROD_MAX 16 +#define MR_PROD_MAX 128 #endif #ifndef MR_SID_MAX -- cgit v1.2.3