summaryrefslogtreecommitdiff
path: root/qpid/cpp/lib/common/sys
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-03-28 21:46:28 +0000
committerAlan Conway <aconway@apache.org>2007-03-28 21:46:28 +0000
commit60d75e73a6b1dcfaa31b890330e7ab224d084473 (patch)
treec05fdd974ffea97b9ad881347a68f7c0731c03cf /qpid/cpp/lib/common/sys
parent7cd249e7965f9b35050fa7504991a9facf0d1fbb (diff)
downloadqpid-python-60d75e73a6b1dcfaa31b890330e7ab224d084473.tar.gz
Missed changes on previous commit.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@523474 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/lib/common/sys')
-rw-r--r--qpid/cpp/lib/common/sys/apr/APRAcceptor.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/qpid/cpp/lib/common/sys/apr/APRAcceptor.cpp b/qpid/cpp/lib/common/sys/apr/APRAcceptor.cpp
index a346b9e8dc..604fb9f5ca 100644
--- a/qpid/cpp/lib/common/sys/apr/APRAcceptor.cpp
+++ b/qpid/cpp/lib/common/sys/apr/APRAcceptor.cpp
@@ -82,9 +82,7 @@ void APRAcceptor::run(ConnectionInputHandlerFactory* factory) {
std::cout << "Listening on port " << getPort() << "..." << std::endl;
while(running) {
apr_socket_t* client;
- printf("== accept pre\n"); // FIXME aconway 2007-03-28:
apr_status_t status = apr_socket_accept(&client, socket, APRPool::get());
- printf("== accept post %d %d\n", status, running); // FIXME aconway 2007-03-28:
if(status == APR_SUCCESS){
//make this socket non-blocking:
CHECK_APR_SUCCESS(apr_socket_timeout_set(client, 0));
@@ -115,9 +113,7 @@ void APRAcceptor::shutdown() {
void APRAcceptor::shutdownImpl() {
running = false;
processor.stop();
- printf("== shutdownImpl pre\n"); // FIXME aconway 2007-03-28:
CHECK_APR_SUCCESS(apr_socket_close(socket));
- printf("== shutdownImpl post\n");
}