diff options
author | Ciro Nishiguchi <ciro.nishiguchi@ni.com> | 2019-10-02 21:49:53 -0500 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-11-26 12:21:32 -0800 |
commit | 912ed28b3df13b9f9c33f2fa92867ec0ac7445fd (patch) | |
tree | 4c3f06c9332547ec47d08397b9bbde88e9be6ae8 /host/lib/rfnoc/chdr_ctrl_xport.cpp | |
parent | 2f97f8bd0167d4179427efa8a955046fbf417e91 (diff) | |
download | uhd-912ed28b3df13b9f9c33f2fa92867ec0ac7445fd.tar.gz uhd-912ed28b3df13b9f9c33f2fa92867ec0ac7445fd.tar.bz2 uhd-912ed28b3df13b9f9c33f2fa92867ec0ac7445fd.zip |
rfnoc: Make trasnport safe to use with offload threads
Make transports safe to use with an offload thread by ensuring that the
callbacks and the API methods can execute concurrently. Also, ensure
that the transports release their I/O service clients prior to allowing
their other member variables be destroyed.
Diffstat (limited to 'host/lib/rfnoc/chdr_ctrl_xport.cpp')
-rw-r--r-- | host/lib/rfnoc/chdr_ctrl_xport.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/host/lib/rfnoc/chdr_ctrl_xport.cpp b/host/lib/rfnoc/chdr_ctrl_xport.cpp index f9f7c9e1b..6b185efab 100644 --- a/host/lib/rfnoc/chdr_ctrl_xport.cpp +++ b/host/lib/rfnoc/chdr_ctrl_xport.cpp @@ -78,6 +78,16 @@ chdr_ctrl_xport::chdr_ctrl_xport(io_service::sptr io_srv, recv_link, 1, mgmt_recv_cb, send_link_if::sptr(), 0, release_cb); } + +chdr_ctrl_xport::~chdr_ctrl_xport() +{ + // Release I/O service clients before allowing members needed by callbacks + // be destroyed + _send_if.reset(); + _ctrl_recv_if.reset(); + _mgmt_recv_if.reset(); +} + /*! * Get an empty frame buffer in which to write packet contents. * |