summaryrefslogtreecommitdiff
path: root/gr-blocks/lib/repeat_impl.cc
Commit message (Collapse)AuthorAgeFilesLines
* Replace all calls to `get_initial_sptr` with `make_block_sptr`Thomas Habets2020-07-301-1/+1
| | | | | | | | | | | | | | 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
* msg_handler: Apply clang-formatJohannes Demel2020-06-041-1/+2
| | | | Make sure, code is properly formatted everywhere.`
* msg_handler: Use lambdas to set msg handlersJohannes Demel2020-06-041-3/+1
| | | | | With this commit, all calls to `set_msg_handler` in `gr-blocks` use lambdas. This helps to use `std::function` instead of `boost::function`.
* msg_handler: Switch from boost::function to std::functionJohannes Demel2020-06-041-2/+3
| | | | | | | This commit is a first stab at moving from `boost::function` to `std::function`. For now, it does only update gr-blocks. Also, this requires more testing. If others can confirm that this change works, I'll continue to update all modules.
* Update license header to SPDX formatdevnulling2020-01-271-13/+1
|
* Tree: clang-format without the include sortingMarcus Müller2019-08-091-50/+47
|
* Provided thread safety to dynamic repeatMarcus Müller2015-08-301-2/+15
| | | | | ... by wrapping the actual setter in a message handler and writing a delegate _post()er.
* repeat: Adding dynamic interpolationKevin McQuiggin2015-08-301-0/+7
| | | | | * Added void set_interpolation(int) setter * Added int interpolation() getter
* Removing trailing/extra whitespaces before release.Tom Rondeau2014-07-071-3/+3
| | | | We should be more careful about letting these into the code in the future. In emacs, we can use (add-hook 'before-save-hook 'delete-trailing-whitespace).
* runtime: converting runtime core to gr namespace, gnuradio include dir.Tom Rondeau2013-04-291-4/+4
|
* blocks: added gr::blocks::repeatJohnathan Corgan2012-07-191-0/+69