diff options
Diffstat (limited to 'host/lib/include/uhdlib/transport/nirio_link.hpp')
-rw-r--r-- | host/lib/include/uhdlib/transport/nirio_link.hpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/host/lib/include/uhdlib/transport/nirio_link.hpp b/host/lib/include/uhdlib/transport/nirio_link.hpp index 055874146..2335e311c 100644 --- a/host/lib/include/uhdlib/transport/nirio_link.hpp +++ b/host/lib/include/uhdlib/transport/nirio_link.hpp @@ -104,6 +104,24 @@ public: return _adapter_id; } + /*! + * Returns whether this link type supports releasing the frame buffers + * in an order different from that in which they were acquired. + */ + bool supports_send_buff_out_of_order() const + { + return false; + } + + /*! + * Returns whether this link type supports releasing the frame buffers + * in an order different from that in which they were acquired. + */ + bool supports_recv_buff_out_of_order() const + { + return false; + } + private: using recv_link_base_t = recv_link_base<nirio_link>; using send_link_base_t = send_link_base<nirio_link>; |