From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Date: Mon, 3 Dec 2018 12:22:38 +0300 From: Vladimir Davydov Subject: Re: [PATCH v4 1/5] box: move port to src/ Message-ID: <20181203092238.rinyl5hajdmconyv@esperanza> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: To: imeevma@tarantool.org Cc: v.shpilevoy@tarantool.org, tarantool-patches@freelists.org, kostja@tarantool.org List-ID: On Fri, Nov 30, 2018 at 10:01:09PM +0300, imeevma@tarantool.org wrote: > Basic port structure does not depend on anything but > standard types. It just gives an interface and calls > virtual functions. > > Its location in box/ was ok since it was not used > anywhere in src/. But next commits will add a new > method to mpstream so as to dump port. Mpstream is > implemented in src/, so lets move port over here. > > Needed for #3505 > --- > src/CMakeLists.txt | 1 + > src/box/port.c | 30 ------------- > src/box/port.h | 103 +------------------------------------------ > src/port.c | 37 ++++++++++++++++ > src/port.h | 127 +++++++++++++++++++++++++++++++++++++++++++++++++++++ > 5 files changed, 166 insertions(+), 132 deletions(-) > create mode 100644 src/port.c > create mode 100644 src/port.h Pushed to 2.1.