diff options
author | jcorgan | 2009-02-22 20:52:29 +0000 |
---|---|---|
committer | jcorgan | 2009-02-22 20:52:29 +0000 |
commit | 8056ff424a153dd5bab95bdda1758efe5ed9b246 (patch) | |
tree | d635d8f080821287c566b700c84dc631037f7aca /usrp2/host/lib/usrp2_impl.cc | |
parent | f92986d6ff10330ee4608510f7baaa895e6772e0 (diff) | |
download | gnuradio-8056ff424a153dd5bab95bdda1758efe5ed9b246.tar.gz gnuradio-8056ff424a153dd5bab95bdda1758efe5ed9b246.tar.bz2 gnuradio-8056ff424a153dd5bab95bdda1758efe5ed9b246.zip |
Adds ifc_name() to libusrp2 and gr-usrp2
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10475 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'usrp2/host/lib/usrp2_impl.cc')
-rw-r--r-- | usrp2/host/lib/usrp2_impl.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usrp2/host/lib/usrp2_impl.cc b/usrp2/host/lib/usrp2_impl.cc index 332e479a5..3a0cd918e 100644 --- a/usrp2/host/lib/usrp2_impl.cc +++ b/usrp2/host/lib/usrp2_impl.cc @@ -129,8 +129,8 @@ namespace usrp2 { usrp2::impl::impl(const std::string &ifc, props *p) - : d_eth_buf(new eth_buffer()), d_pf(0), d_bg_thread(0), d_bg_running(false), - d_rx_seqno(-1), d_tx_seqno(0), d_next_rid(0), + : d_eth_buf(new eth_buffer()), d_ifc_name(ifc), d_pf(0), d_bg_thread(0), + d_bg_running(false), d_rx_seqno(-1), d_tx_seqno(0), d_next_rid(0), d_num_rx_frames(0), d_num_rx_missing(0), d_num_rx_overruns(0), d_num_rx_bytes(0), d_num_enqueued(0), d_enqueued_mutex(), d_bg_pending_cond(&d_enqueued_mutex), d_channel_rings(NCHANS), d_tx_interp(0), d_rx_decim(0) |