Skip to content
Snippets Groups Projects

Adding src id support

Merged Flavio Pisani requested to merge fpisani_eb_dev into eb_dev_verbs
20 files
+ 98
45
Compare changes
  • Side-by-side
  • Inline
Files
20
@@ -53,8 +53,10 @@ namespace buffer_interface {
}
virtual void read_complete() = 0;
// The impletationd of cancel should not query any external proces or device
// The implementation of cancel should not query any external proces or device
virtual void cancel() = 0;
// The src id should be set by an external device or in the constructor of the derived class
virtual int get_src_id() const = 0;
};
template<class T>
@@ -79,8 +81,10 @@ namespace buffer_interface {
}
virtual void write_complete() = 0;
// The impletationd of cancel should not query any external proces or device
// The implementation of cancel should not query any external proces or device
virtual void cancel() = 0;
// The src id should be set by an external device or in the constructor of the derived class
virtual int get_src_id() const = 0;
};
} // namespace buffer_interface
Loading