diff options
author | Ciro Nishiguchi <ciro.nishiguchi@ni.com> | 2019-09-11 14:48:50 -0500 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-11-26 12:21:31 -0800 |
commit | 650c07cbcb74b88e1a561a85e25035e553e00f14 (patch) | |
tree | 4085d562123f3ea4e20e70a2b326dcfb3b3674da /host/tests/CMakeLists.txt | |
parent | f3a86a32944ae68047e6f64369e93a6830742601 (diff) | |
download | uhd-650c07cbcb74b88e1a561a85e25035e553e00f14.tar.gz uhd-650c07cbcb74b88e1a561a85e25035e553e00f14.tar.bz2 uhd-650c07cbcb74b88e1a561a85e25035e553e00f14.zip |
transport: Implement an I/O service that uses an offload thread
The offload_io_service executes another I/O service instance within an
offload thread, and provides synchronization mechanisms to communicate
with clients. Frame buffers are passed from the offload thread to the
client and back via single-producer, single-consumer queues.
Diffstat (limited to 'host/tests/CMakeLists.txt')
-rw-r--r-- | host/tests/CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/host/tests/CMakeLists.txt b/host/tests/CMakeLists.txt index 8a477b181..89d0926fa 100644 --- a/host/tests/CMakeLists.txt +++ b/host/tests/CMakeLists.txt @@ -231,6 +231,12 @@ UHD_ADD_NONAPI_TEST( ${CMAKE_SOURCE_DIR}/lib/transport/inline_io_service.cpp ) +UHD_ADD_NONAPI_TEST( + TARGET "offload_io_srv_test.cpp" + EXTRA_SOURCES + ${CMAKE_SOURCE_DIR}/lib/transport/offload_io_service.cpp +) + ######################################################################## # demo of a loadable module ######################################################################## |