aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/include/uhdlib/transport/link_if.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'host/lib/include/uhdlib/transport/link_if.hpp')
-rw-r--r--host/lib/include/uhdlib/transport/link_if.hpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/host/lib/include/uhdlib/transport/link_if.hpp b/host/lib/include/uhdlib/transport/link_if.hpp
index 6f533603e..55755948c 100644
--- a/host/lib/include/uhdlib/transport/link_if.hpp
+++ b/host/lib/include/uhdlib/transport/link_if.hpp
@@ -57,6 +57,15 @@ public:
*/
virtual adapter_id_t get_send_adapter_id() const = 0;
+ /*!
+ * Returns whether this link type supports releasing the frame buffers
+ * in an order different from that in which they were acquired.
+ */
+ virtual bool supports_send_buff_out_of_order() const
+ {
+ return true;
+ }
+
send_link_if() = default;
send_link_if(const send_link_if&) = delete;
send_link_if& operator=(const send_link_if&) = delete;
@@ -102,6 +111,15 @@ public:
*/
virtual adapter_id_t get_recv_adapter_id() const = 0;
+ /*!
+ * Returns whether this link type supports releasing the frame buffers
+ * in an order different from that in which they were acquired.
+ */
+ virtual bool supports_recv_buff_out_of_order() const
+ {
+ return true;
+ }
+
recv_link_if() = default;
recv_link_if(const recv_link_if&) = delete;
recv_link_if& operator=(const recv_link_if&) = delete;