summaryrefslogtreecommitdiff
path: root/gr-zeromq/lib/req_source_impl.cc
Commit message (Collapse)AuthorAgeFilesLines
* zeromq: Remove manual memory managementThomas Habets2020-09-221-2/+2
| | | | | I believe this fixes a memory leak, as the thread objects were never deleted.
* Replace all calls to `get_initial_sptr` with `make_block_sptr`Thomas Habets2020-07-301-2/+2
| | | | | | | | | | | | | | First batch of changes: ``` find […] -print0 | xargs -0 sed -i -r '/get_initial_sptr/{:nxt N;/;/!b nxt;s/get_initial_sptr\(\s*new ([^(]+)(.*)\)\)/make_block_sptr<\1>\2)/}' ``` Then: * Back out `sptr_magic.h` edits * Change some `friend` clauses * clang-format the whole thing * Update checksums in the pybind11 bindings files
* Update license header to SPDX formatdevnulling2020-01-271-13/+1
|
* gr-zeromq: Fix warnings deprecated send since 4.3.1 extends PR #2503Brennan Ashton2019-11-011-0/+4
| | | | | | | | | Wrap some missed send calls with helper define and make sure zmq_common_impl.h is being used everywhere instead of zmq.hpp Most were already pulling this in via the base_impl.h Signed-off-by: Brennan Ashton <bashton@brennanashton.com>
* clang-format: Ordering all the includesMarcus Müller2019-08-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | clang-format: ordering includes in gnuradio-runtime clang-format: ordering includes in gr-filter clang-format: ordering includes in gr-fft clang-format: ordering includes in gr-audio clang-format: ordering includes in gr-analog clang-format: ordering includes in gr-fec clang-format: ordering includes in gr-wavelet clang-format: ordering includes in gr-zeromq clang-format: ordering includes in gr-vocoder clang-format: ordering includes in gr-video-sdl clang-format: ordering includes in gr-trellis clang-format: ordering includes in gr-blocks clang-format: ordering includes in gr-digital clang-format: ordering includes in gr-uhd clang-format: ordering includes in gr-dtv clang-format: ordering includes in gr-channels clang-format: ordering includes in gr-qtgui clang_format.py: re-enable include reordering
* Tree: clang-format without the include sortingMarcus Müller2019-08-091-68/+65
|
* gr-zeromq: Big rework for performance and correctnessSylvain Munaut2016-01-271-59/+48
| | | | | | | | | | | | | | | - Use class hierarchy trying to maximize code re-use. - Dont' drop samples on receive if the output buffer doesn't have enough space. - Don't drop tags on receive by putting tags in the future. - Better metadata creation/parsing avoiding copying lots data. - Always do as much work as possible in a single call to work() to avoid scheduler overhead as long as possible. - Allow setting the high watermark to avoid older version of zeromq's default of buffering infinite messages and causing a paging thrash to/from disk when the flow graph can't keep up. Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
* zeromq: minor cleanupJohnathan Corgan2015-01-121-9/+12
|
* zmq: stream tag passing now worksTim O'Shea2014-12-261-1/+1
|
* zeromq: fixups and stylistic changes before mergeJohnathan Corgan2014-10-311-1/+1
|
* zmq: all source blocks should now support tag headersTim O'Shea2014-10-271-6/+21
|
* zeromq: Don't call context close as it is not available in zmq 2Johannes Schmitz2014-05-121-1/+0
|
* zeromq: Change the value of the poll timeout according to the zmq version.Johannes Schmitz2014-05-091-0/+5
| | | | | Must be in microseconds for version 2 and below and in milliseconds for version 3 and above.
* zeromq: Remove ZMQ_NOBLOCK as we are using pollingJohannes Schmitz2014-05-091-5/+5
|
* zeromq: Timeout needs to be in milliseconds for zmq 3.0, close socketsJohannes Schmitz2014-05-091-7/+7
| | | | correctly, cleanup
* zeromq: Add missing timeout and blocking parameters and pollingJohannes Schmitz2014-05-081-7/+9
|
* zeromq: set ZMQ_LINGER to 0 for all blocksJohnathan Corgan2014-05-071-0/+2
|
* zeromq: Fix doxygen and memcpy for vlenJohannes Schmitz2014-05-071-14/+13
|
* zeromq: renamed source_reqrep to req_sourceCamilo Solano2014-05-061-0/+94