diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2009-05-28 06:07:19 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2009-05-28 06:07:19 +0000 |
| commit | ce6f7a2cd0a604e12e72e99f017edab9c2f2f24b (patch) | |
| tree | db41e5d12305767d62b26bc1031fe7219ef0f1ef /cpp/src/qpid/client/RdmaConnector.cpp | |
| parent | 4737a65543783790cd1bd3be66ef66956746e12e (diff) | |
| download | qpid-python-ce6f7a2cd0a604e12e72e99f017edab9c2f2f24b.tar.gz | |
QPID-1879 Removed some code obsoleted by this change
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@779445 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/client/RdmaConnector.cpp')
| -rw-r--r-- | cpp/src/qpid/client/RdmaConnector.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/cpp/src/qpid/client/RdmaConnector.cpp b/cpp/src/qpid/client/RdmaConnector.cpp index f6bedf63f5..15d6e5364d 100644 --- a/cpp/src/qpid/client/RdmaConnector.cpp +++ b/cpp/src/qpid/client/RdmaConnector.cpp @@ -68,7 +68,6 @@ using boost::str; sys::Mutex pollingLock; bool polling; - bool joined; sys::ShutdownHandler* shutdownHandler; framing::InputHandler* input; @@ -148,7 +147,6 @@ RdmaConnector::RdmaConnector(Poller::shared_ptr p, version(ver), initiated(false), polling(false), - joined(true), shutdownHandler(0), aio(0), poller(p), @@ -164,7 +162,6 @@ RdmaConnector::~RdmaConnector() { void RdmaConnector::connect(const std::string& host, int port){ Mutex::ScopedLock l(pollingLock); assert(!polling); - assert(joined); // This stuff needs to abstracted out of here to a platform specific file ::addrinfo *res; @@ -188,7 +185,6 @@ void RdmaConnector::connect(const std::string& host, int port){ c->start(poller); polling = true; - joined = false; } // The following only gets run when connected |
