File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed
Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -569,6 +569,15 @@ void QueuePair::disableSignaledOperations() {
569569 defaultFlags &= (~IBV_SEND_SIGNALED);
570570}
571571
572+ void QueuePair::enableInlinedOperations() {
573+ defaultFlags |= IBV_SEND_INLINE;
574+ }
575+
576+ void QueuePair::disableInlinedOperations() {
577+ defaultFlags &= (~IBV_SEND_INLINE);
578+ }
579+
580+
572581bool QueuePair::hasUserData() {
573582 return (this->userData != NULL && this->userDataSize != 0);
574583}
Original file line number Diff line number Diff line change @@ -81,6 +81,8 @@ class QueuePair {
8181 void disableFencedOperations();
8282 void enableSignaledOperations();
8383 void disableSignaledOperations();
84+ void enableInlinedOperations();
85+ void disableInlinedOperations();
8486
8587public:
8688
You can’t perform that action at this time.
0 commit comments