summaryrefslogtreecommitdiff
path: root/qpid/cpp/common/io/src/BlockingAPRAcceptor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qpid/cpp/common/io/src/BlockingAPRAcceptor.cpp')
-rw-r--r--qpid/cpp/common/io/src/BlockingAPRAcceptor.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/qpid/cpp/common/io/src/BlockingAPRAcceptor.cpp b/qpid/cpp/common/io/src/BlockingAPRAcceptor.cpp
index 380318bcfa..bf74260a55 100644
--- a/qpid/cpp/common/io/src/BlockingAPRAcceptor.cpp
+++ b/qpid/cpp/common/io/src/BlockingAPRAcceptor.cpp
@@ -24,10 +24,11 @@ using namespace qpid::concurrent;
using namespace qpid::framing;
using namespace qpid::io;
-BlockingAPRAcceptor::BlockingAPRAcceptor(bool _debug, int c) : connectionBacklog(c),
- threadFactory(new APRThreadFactory()),
- debug(_debug){
-
+BlockingAPRAcceptor::BlockingAPRAcceptor(bool _debug, int c) :
+ debug(_debug),
+ threadFactory(new APRThreadFactory()),
+ connectionBacklog(c)
+{
APRBase::increment();
CHECK_APR_SUCCESS(apr_pool_create(&apr_pool, NULL));
}