summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/sys/rdma/RdmaIO.h
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2010-12-23 17:11:57 +0000
committerAndrew Stitcher <astitcher@apache.org>2010-12-23 17:11:57 +0000
commitc3d6047e94210bd35f7c35b9bba0bc2e60841fa7 (patch)
tree6e6ab77a94534863b37069f7b48c82b2bd411f51 /cpp/src/qpid/sys/rdma/RdmaIO.h
parentff152807775cf3ad146742a59bbe44146cbb9a34 (diff)
downloadqpid-python-c3d6047e94210bd35f7c35b9bba0bc2e60841fa7.tar.gz
Rename Rdma send buffer operations.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1052331 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/sys/rdma/RdmaIO.h')
-rw-r--r--cpp/src/qpid/sys/rdma/RdmaIO.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/src/qpid/sys/rdma/RdmaIO.h b/cpp/src/qpid/sys/rdma/RdmaIO.h
index 330c2395bd..ec9caaf08d 100644
--- a/cpp/src/qpid/sys/rdma/RdmaIO.h
+++ b/cpp/src/qpid/sys/rdma/RdmaIO.h
@@ -93,8 +93,8 @@ namespace Rdma {
void stop(NotifyCallback);
void requestCallback(RequestCallback);
int incompletedWrites() const;
- Buffer* getBuffer();
- void returnBuffer(Buffer*);
+ Buffer* getSendBuffer();
+ void returnSendBuffer(Buffer*);
private:
const static int maxSupportedProtocolVersion = 1;
@@ -133,12 +133,12 @@ namespace Rdma {
return outstandingWrites;
}
- inline Buffer* AsynchIO::getBuffer() {
- return qp->getBuffer();
+ inline Buffer* AsynchIO::getSendBuffer() {
+ return qp->getSendBuffer();
}
- inline void AsynchIO::returnBuffer(Buffer* b) {
- qp->returnBuffer(b);
+ inline void AsynchIO::returnSendBuffer(Buffer* b) {
+ qp->returnSendBuffer(b);
}
// These are the parameters necessary to start the conversation