diff options
author | Marcus Müller <mmueller@gnuradio.org> | 2021-06-20 18:44:37 +0200 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2021-06-28 10:19:20 -0400 |
commit | a695142b33199de25327709d4983592d96e20414 (patch) | |
tree | 135068aeef5b447b30ae2a20e252f0a3f0520430 /gr-blocks/python | |
parent | 5463e741ef6714854e4623288eb74e21eb1cca90 (diff) |
blocks: zero-output, zero-copy Head mode
If you don't want to test a stream with an exact number of input, but
just want your flow graph to terminate after a given number of items,
having a head block without an output enables you to do that without
copying the data from Head's in- to its output.
Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
Diffstat (limited to 'gr-blocks/python')
-rw-r--r-- | gr-blocks/python/blocks/bindings/head_python.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-blocks/python/blocks/bindings/head_python.cc b/gr-blocks/python/blocks/bindings/head_python.cc index bc02a00a9b..33ba41cb3e 100644 --- a/gr-blocks/python/blocks/bindings/head_python.cc +++ b/gr-blocks/python/blocks/bindings/head_python.cc @@ -14,7 +14,7 @@ /* BINDTOOL_GEN_AUTOMATIC(0) */ /* BINDTOOL_USE_PYGCCXML(0) */ /* BINDTOOL_HEADER_FILE(head.h) */ -/* BINDTOOL_HEADER_FILE_HASH(d0c0087ad00f1b1d3f09273ba0dcb7d6) */ +/* BINDTOOL_HEADER_FILE_HASH(eef877add2d06c4e1e1a3ba48f498ad3) */ /***********************************************************************************/ #include <pybind11/complex.h> |