summaryrefslogtreecommitdiff
path: root/gr-zeromq/lib/sub_msg_source_impl.h
diff options
context:
space:
mode:
authorMarcus Müller <mueller@kit.edu>2018-02-20 11:33:33 +0100
committerMarcus Müller <marcus@hostalia.de>2018-02-23 19:06:50 +0100
commit28401b7a01d9e6f25c6057f7b9dc07c8e568ff60 (patch)
tree0b38941011f873953c15987688460ef1e8e98c49 /gr-zeromq/lib/sub_msg_source_impl.h
parent97f0d1cecf4a8cb82e8e16e4dfcac0589c5b56c7 (diff)
zeromq: remove unnecessary call to pmt::intern at runtime
typical usage: message_port_pub(pmt::mp("out_port"), …) which is bad, as it implies hashing of a string, allocation of memory, deallocation, finding the hashed string in the table of interned strings and returning a unique pointer (which for reasons of PMT awesomeness isn't even unique) to the interned port name. Replacing all these port name ad hoc ::mp() calls by reusing one, private, port name member.
Diffstat (limited to 'gr-zeromq/lib/sub_msg_source_impl.h')
-rw-r--r--gr-zeromq/lib/sub_msg_source_impl.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/gr-zeromq/lib/sub_msg_source_impl.h b/gr-zeromq/lib/sub_msg_source_impl.h
index 09bede9cb5..4cf85d10ba 100644
--- a/gr-zeromq/lib/sub_msg_source_impl.h
+++ b/gr-zeromq/lib/sub_msg_source_impl.h
@@ -36,6 +36,7 @@ namespace gr {
zmq::context_t *d_context;
zmq::socket_t *d_socket;
boost::thread *d_thread;
+ const pmt::pmt_t d_port;
void readloop();