diff options
author | trungnob <trung.n.tran@ni.com> | 2017-05-19 17:43:26 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2017-05-20 21:21:59 -0700 |
commit | b431866a5ec00753b40823e3172a8388582701c4 (patch) | |
tree | 3238e22f847439df08a79e413abfc649b5f81906 /host/lib/device.cpp | |
parent | 6c002e026645738e8cc23e3e1b3d2a631c7f2b3b (diff) | |
download | uhd-b431866a5ec00753b40823e3172a8388582701c4.tar.gz uhd-b431866a5ec00753b40823e3172a8388582701c4.tar.bz2 uhd-b431866a5ec00753b40823e3172a8388582701c4.zip |
log: Remove logging out of any UHD_STATIC_BLOCK.
Window DLL loading is causing deadlock due to thread creation and
synchronization of logging system; therefore, we want to remove it for
now.
Diffstat (limited to 'host/lib/device.cpp')
-rw-r--r-- | host/lib/device.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/device.cpp b/host/lib/device.cpp index ace0a0bd6..f8b2fc498 100644 --- a/host/lib/device.cpp +++ b/host/lib/device.cpp @@ -73,7 +73,7 @@ void device::register_device( const make_t &make, const device_filter_t filter ){ - UHD_LOGGER_TRACE("UHD") << "registering device"; + // UHD_LOGGER_TRACE("UHD") << "registering device"; get_dev_fcn_regs().push_back(dev_fcn_reg_t(find, make, filter)); } |