Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | rpc: add exception when client constructor fails | Mark Meserve | 2019-10-15 | 1 | -3/+36 |
| | |||||
* | rpc: convert client to sptr | Mark Meserve | 2019-10-15 | 1 | -12/+13 |
| | |||||
* | rpc,mpmd: replace all set_timeout() to new api | Trung Tran | 2019-01-14 | 1 | -5/+0 |
| | | | | | Using new rpc client new API that ensure atomic setting of timeout on each rpc call. | ||||
* | utils:rpc: set rpc timeout during rpc call | Trung Tran | 2019-01-14 | 1 | -3/+120 |
| | | | | | | | | | | | | | The current implementation of the UHD RPC client has a timeout that is being accessed non-atomically. Many calls follow the pattern: 1. set_timeout(value) 2. request_rpc() 3. set_timeout(default) which is not atomic. Other concurrent calls on the same rpc client may change the timeout value; leads to unexpected behavior These new set of function will, instead, handle setting and re-setting the timeout atomically in the RPC request. | ||||
* | uhd: Move internal headers to uhdlib/ | Martin Braun | 2018-03-14 | 1 | -0/+191 |
To avoid the proliferation of additional include directories and multiple ways of including project-local headers, we now default to moving all headers that are used across UHD into the uhdlib/ subdirectory. Some #include statements were also reordered as they were modified for closer compliance with the coding guidelines. Internal cpp source files should now include files like this: #include <uhdlib/rfnoc/ctrl_iface.hpp> Reviewed-by: Ashish Chaudhari <ashish.chaudhari@ettus.com> |