From d5fd7f649848f3b649e9afcc0e468f365c2a9949 Mon Sep 17 00:00:00 2001 From: zmq Date: Mon, 15 Apr 2024 10:37:15 +0800 Subject: [PATCH] Increased the limit on the number of messages --- components/net/sal/include/sal_msg.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/components/net/sal/include/sal_msg.h b/components/net/sal/include/sal_msg.h index 2a2cff1d0b..7d52b25b63 100644 --- a/components/net/sal/include/sal_msg.h +++ b/components/net/sal/include/sal_msg.h @@ -58,6 +58,9 @@ struct unix_conn int type; int proto; +#ifdef SAL_USING_AF_UNIX + rt_atomic_t msg_count; +#endif rt_uint32_t send_timeout; rt_uint32_t recv_timeout; rt_wqueue_t wq_read_head;