aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/transport/super_recv_packet_handler.hpp
diff options
context:
space:
mode:
authorAndrej Rode <andrej.rode@ettus.com>2017-02-20 10:19:53 -0800
committerMartin Braun <martin.braun@ettus.com>2017-02-20 12:45:32 -0800
commit2b33f2bb4c01d4306fd46f78edf6e355a03e2ed7 (patch)
tree040c7e3e3df638b86f3c2c64fb99659e5a0210a9 /host/lib/transport/super_recv_packet_handler.hpp
parent37ebaa6ad84e90c7d1d0d1133af008e9970a333f (diff)
downloaduhd-2b33f2bb4c01d4306fd46f78edf6e355a03e2ed7.tar.gz
uhd-2b33f2bb4c01d4306fd46f78edf6e355a03e2ed7.tar.bz2
uhd-2b33f2bb4c01d4306fd46f78edf6e355a03e2ed7.zip
uhd: Replace NULL with nullptr in if_addrs and super_recv_packet_handler
This is not a functional change, but it marks the usage of nullptr in UHD. Commits past this one may also use this C++11 feature.
Diffstat (limited to 'host/lib/transport/super_recv_packet_handler.hpp')
-rw-r--r--host/lib/transport/super_recv_packet_handler.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/host/lib/transport/super_recv_packet_handler.hpp b/host/lib/transport/super_recv_packet_handler.hpp
index 161d921bc..b6b4fb937 100644
--- a/host/lib/transport/super_recv_packet_handler.hpp
+++ b/host/lib/transport/super_recv_packet_handler.hpp
@@ -332,9 +332,9 @@ private:
void reset()
{
buff.reset();
- vrt_hdr = NULL;
+ vrt_hdr = nullptr;
time = time_spec_t(0.0);
- copy_buff = NULL;
+ copy_buff = nullptr;
}
managed_recv_buffer::sptr buff;
const uint32_t *vrt_hdr;
@@ -409,7 +409,7 @@ private:
//get a single packet from the transport layer
managed_recv_buffer::sptr &buff = curr_buffer_info.buff;
buff = _props[index].get_buff(timeout);
- if (buff.get() == NULL) return PACKET_TIMEOUT_ERROR;
+ if (buff.get() == nullptr) return PACKET_TIMEOUT_ERROR;
#ifdef ERROR_INJECT_DROPPED_PACKETS
if (++recvd_packets > 1000)
@@ -417,7 +417,7 @@ private:
recvd_packets = 0;
buff.reset();
buff = _props[index].get_buff(timeout);
- if (buff.get() == NULL) return PACKET_TIMEOUT_ERROR;
+ if (buff.get() == nullptr) return PACKET_TIMEOUT_ERROR;
}
#endif
@@ -616,7 +616,7 @@ private:
UHD_MSG(fastpath) << "O";
}
curr_info[index].buff.reset();
- curr_info[index].copy_buff = NULL;
+ curr_info[index].copy_buff = nullptr;
return;
case PACKET_TIMEOUT_ERROR: