diff options
author | Johannes Schmitz <schmitz@ti.rwth-aachen.de> | 2014-05-09 16:34:13 +0200 |
---|---|---|
committer | Johannes Schmitz <schmitz@ti.rwth-aachen.de> | 2014-05-09 16:34:13 +0200 |
commit | 49466c73743d1acf70a3e2d24e6dbc2a954f7271 (patch) | |
tree | b883f113a034b8331168e155355a9d524af7922f /gr-zeromq/lib/push_sink_impl.h | |
parent | 84444acb7a239626d11c4d06f7b6342c18180e0c (diff) |
zeromq: Remove ZMQ_NOBLOCK as we are using polling
Diffstat (limited to 'gr-zeromq/lib/push_sink_impl.h')
-rw-r--r-- | gr-zeromq/lib/push_sink_impl.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gr-zeromq/lib/push_sink_impl.h b/gr-zeromq/lib/push_sink_impl.h index 2ff9bc509a..9a10065eba 100644 --- a/gr-zeromq/lib/push_sink_impl.h +++ b/gr-zeromq/lib/push_sink_impl.h @@ -35,12 +35,11 @@ namespace gr { size_t d_itemsize; size_t d_vlen; float d_timeout; - bool d_blocking; zmq::context_t *d_context; zmq::socket_t *d_socket; public: - push_sink_impl(size_t itemsize, size_t vlen, char *address, int timeout, bool blocking); + push_sink_impl(size_t itemsize, size_t vlen, char *address, int timeout); ~push_sink_impl(); int work(int noutput_items, |