From f7f8fbc85c48b003d1e3094a94a3528001977977 Mon Sep 17 00:00:00 2001 From: lichao <lichao@aiotlink.com> Date: 星期二, 01 六月 2021 15:15:55 +0800 Subject: [PATCH] remove length in ShmSocket ctor, not used. --- src/shm_socket.h | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/shm_socket.h b/src/shm_socket.h index 9dfdd6b..9bb65fc 100644 --- a/src/shm_socket.h +++ b/src/shm_socket.h @@ -47,9 +47,11 @@ typedef std::function<bool(ShmSocket &sock, MsgI &imsg, BHMsgHead &head)> PartialRecvCB; typedef std::function<void(ShmSocket &sock)> IdleCB; - ShmSocket(Shm &shm, const MQId id, const int len); - ShmSocket(Shm &shm, const bool create_or_else_find, const MQId id, const int len); - ShmSocket(int64_t offset, Shm &shm, const MQId id); + ShmSocket(Shm &shm, const MQId id, Mode mode) : + run_(false), mq_(shm, id, mode), alloc_id_(0), send_buffer_(shm) { Start(); } + ShmSocket(int64_t abs_addr, Shm &shm, const MQId id) : + run_(false), mq_(abs_addr, shm, id), alloc_id_(0), send_buffer_(shm) { Start(); } + ~ShmSocket(); static bool Remove(SharedMemory &shm, const MQId id) { return Queue::Remove(shm, id); } bool Remove() { return Remove(shm(), id()); } -- Gitblit v1.8.0