summaryrefslogtreecommitdiff
path: root/gr-blocks/include/gnuradio/blocks/file_descriptor_source.h
Commit message (Collapse)AuthorAgeFilesLines
* Switch from boost pointers to std C++11 pointersThomas Habets2020-04-011-1/+1
| | | | | | | | | | | | | | | | | | | Most of this code is automated code changes: ``` set -e SUB="s/dummy/dummy/" for i in shared_ptr make_shared dynamic_pointer_cast weak_ptr enable_shared_from_this get_deleter; do SUB="$SUB;s/boost::$i/std::$i/g" done SUB="$SUB;s^#include <boost/shared_ptr.hpp>^#include <memory>^g" SUB="$SUB;s^namespace boost^namespace std^g" find . \( -name "*.cc" -o -name "*.h" -o -name "*.i" -o -name "*.cxx" -o -name "*.py" \) -print0 | xargs -0 sed -i "$SUB" ``` Only one manual change. In `./gr-fec/lib/fec_mtrx_impl.cc`, add `#include <algorithm>`.
* Update license header to SPDX formatdevnulling2020-01-271-13/+1
|
* Tree: clang-format without the include sortingMarcus Müller2019-08-091-26/+26
|
* docs: Corrects or expands documentation comments for various blocks where I ↵Kevin Reid2014-07-071-1/+2
| | | | | | | | | | | | | | have had to read the source code to understand the - char_to_short and short_to_char scale by a factor of 1<<8. - What delay actually does. - File descriptor blocks close their FDs when destroyed. And one code change: The firdes transition width check error text is made consistent with other similar messages. Addresses Issue #686.
* blocks: set default argument of file_descriptor_source so repeate=false. Bug ↵Tom Rondeau2013-08-291-1/+1
| | | | for not carrying this over from 3.6.
* blocks: fix borked global search and replaceJohnathan Corgan2013-06-091-1/+1
|
* runtime: converting runtime core to gr namespace, gnuradio include dir.Tom Rondeau2013-04-291-0/+61