Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | clang-format: Ordering all the includes | Marcus Müller | 2019-08-09 | 1 | -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 sorting | Marcus Müller | 2019-08-09 | 1 | -39/+29 |
| | |||||
* | python3: update non-GRC components to use python2 or python3 | Douglas Anderson | 2017-02-26 | 1 | -1/+1 |
| | |||||
* | gnuradio-runtime: Fix sptr magic when exception thrown in hier2 constructor | Sylvain Munaut | 2016-01-27 | 1 | -1/+34 |
| | | | | | | | | | | | | | | | | | | | | | | | | Fixes #528 Previously, if an exception is thrown in constructor of a hier_block2 subclass, then : - The hier_block2 base destructor _will_ be called - The actual object is destroyed - But the initial sptr would be left in the static map and point to an invalid object - Whatever connection() were made might have an invalid sptr ref as well So to fix this: - In the hier_block2 destructor, we explicitely disconnect() everything - In the base hier_block2 destructor, we call a new 'cancel sptr' method that will check if this object is still in the static map or not - If it's not: Then this is a legit call to the destructor by shared_ptr and everything is fine - If it's: Then there was an isue and the object is already being destroyed and we need to make sure shared_ptr doesn't try to do it again. We do this using a special 'disarmable' custom deleter. Signed-off-by: Sylvain Munaut <tnt@246tNt.com> | ||||
* | runtime: converting runtime core to gr namespace, gnuradio include dir. | Tom Rondeau | 2013-04-29 | 1 | -0/+72 |