From 65ea2f177bd0810590895d89a490af8cea60253b Mon Sep 17 00:00:00 2001 From: Andrew Stitcher Date: Fri, 27 Jul 2007 17:19:30 +0000 Subject: * Asynchronous network IO subsystem - This is now implemented such that it very nearly only depends on the platform code (Socker & Poller), this is not 100% true at present, but should be simple to finish. - This is still not the default (use "./configure --disable-apr-netio" to get it) - Interrupting the broker gives a known error - Default for number of broker io threads is not correct (needs to be number of CPUs - it will run slower with too many io threads) * EventChannel code - Deleted all EventChannel code as it's entirely superceded by this new shiny code ;-) * Rearranged the platform Socket implementations a bit for better abstraction git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@560323 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/sys/apr/APRAcceptor.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'cpp/src/qpid/sys/apr/APRAcceptor.cpp') diff --git a/cpp/src/qpid/sys/apr/APRAcceptor.cpp b/cpp/src/qpid/sys/apr/APRAcceptor.cpp index 8662e602c2..b353b698ef 100644 --- a/cpp/src/qpid/sys/apr/APRAcceptor.cpp +++ b/cpp/src/qpid/sys/apr/APRAcceptor.cpp @@ -56,8 +56,6 @@ Acceptor::shared_ptr Acceptor::create(int16_t port, int backlog, int threads, bo { return Acceptor::shared_ptr(new APRAcceptor(port, backlog, threads, trace)); } -// Must define Acceptor virtual dtor. -Acceptor::~Acceptor() {} APRAcceptor::APRAcceptor(int16_t port_, int backlog, int threads, bool trace_) : port(port_), -- cgit v1.2.1