diff options
Diffstat (limited to 'cpp/src')
| -rw-r--r-- | cpp/src/qpid/cluster/EventFrame.cpp | 4 | ||||
| -rw-r--r-- | cpp/src/qpid/cluster/Multicaster.h | 2 | ||||
| -rw-r--r-- | cpp/src/qpid/cluster/OutputInterceptor.cpp | 2 |
3 files changed, 1 insertions, 7 deletions
diff --git a/cpp/src/qpid/cluster/EventFrame.cpp b/cpp/src/qpid/cluster/EventFrame.cpp index 9350c801f5..a48d134f1b 100644 --- a/cpp/src/qpid/cluster/EventFrame.cpp +++ b/cpp/src/qpid/cluster/EventFrame.cpp @@ -28,9 +28,7 @@ EventFrame::EventFrame() {} EventFrame::EventFrame(const EventHeader& e, const framing::AMQFrame& f, int rc) : connectionId(e.getConnectionId()), frame(f), readCredit(rc), type(e.getType()) -{ - QPID_LATENCY_INIT(frame); -} +{} std::ostream& operator<<(std::ostream& o, const EventFrame& e) { if (e.frame.getBody()) o << e.frame; diff --git a/cpp/src/qpid/cluster/Multicaster.h b/cpp/src/qpid/cluster/Multicaster.h index d1c3115977..baa5b87f38 100644 --- a/cpp/src/qpid/cluster/Multicaster.h +++ b/cpp/src/qpid/cluster/Multicaster.h @@ -55,8 +55,6 @@ class Multicaster void mcast(const Event& e); /** End holding mode, held events are mcast */ void release(); - /** Call when events are self-delivered to manage flow control. */ - void selfDeliver(const Event&); private: typedef sys::PollableQueue<Event> PollableEventQueue; diff --git a/cpp/src/qpid/cluster/OutputInterceptor.cpp b/cpp/src/qpid/cluster/OutputInterceptor.cpp index da674fa6fd..6af114a662 100644 --- a/cpp/src/qpid/cluster/OutputInterceptor.cpp +++ b/cpp/src/qpid/cluster/OutputInterceptor.cpp @@ -48,7 +48,6 @@ void OutputInterceptor::send(framing::AMQFrame& f) { } if (!parent.isCatchUp()) sent += f.encodedSize(); - QPID_LATENCY_RECORD("up to write queue", f); } void OutputInterceptor::activateOutput() { @@ -99,7 +98,6 @@ void OutputInterceptor::deliverDoOutput(size_t requested) { // Send a doOutput request if one is not already in flight. void OutputInterceptor::sendDoOutput() { if (!parent.isLocal()) return; - QPID_LATENCY_INIT(*this); doingOutput = true; size_t request = writeEstimate.sending(getBuffered()); |
