Kludge Tracker: Gnuradio - v3.4.0-101-g7e2b45b
Parent Directory
(gnuradio)
Kludge Summary of gnuradio/gr-howto-write-a-block
| Total Kludges |
4 |
| Total Subdirs |
3 |
All Directories within gnuradio/gr-howto-write-a-block
All Files within gnuradio/gr-howto-write-a-block
Kludge Snippets in gnuradio/gr-howto-write-a-block
gnuradio/gr-howto-write-a-block/config/gr_gprof.m4
| Category |
FIXME |
| Committer |
jcorgan |
| Commit ID |
5d69a524f81f234b3fbc41d49ba18d6f6886baba |
18 dnl the Free Software Foundation, Inc., 51 Franklin Street,
19 dnl Boston, MA 02110-1301, USA.
20 dnl
21
22 dnl FIXME probably need to add linker flag too...
23
24 AC_DEFUN([GR_SET_GPROF],[
25 dnl Check for --with-gprof
26 AC_MSG_CHECKING([whether user wants gprof])
gnuradio/gr-howto-write-a-block/python/__init__.py
| PyFlakes |
redefinition of unused '_RTLD_GLOBAL' from line 26 |
| Committer |
Johnathan Corgan |
| Commit ID |
5d80acab66a91a6c7bc476761f857d5e876e8bcc |
25 try:
26 from dl import RTLD_GLOBAL as _RTLD_GLOBAL
27 except ImportError:
28 try:
29 from DLFCN import RTLD_GLOBAL as _RTLD_GLOBAL
30 except ImportError:
31 pass
32
33 if _RTLD_GLOBAL != 0:
gnuradio/gr-howto-write-a-block/python/run_tests.in
| Category |
FIXME |
| Committer |
jcorgan |
| Commit ID |
5d69a524f81f234b3fbc41d49ba18d6f6886baba |
17 # Where to look in the src tree for hand written python code
18 py=@abs_top_srcdir@/python
19
20 # Where to look for installed GNU Radio python modules
21 # FIXME this is wrong on a distcheck. We really need to ask gnuradio-core
22 # where it put its python files.
23 installed_pythondir=@pythondir@
24 installed_pyexecdir=@pyexecdir@
25
gnuradio/gr-howto-write-a-block/swig/howto_square_ff.i
| Category |
Magic |
| Committer |
Johnathan Corgan |
| Commit ID |
d462b559ef7618dcf3a61974ff4fc3fe199069a3 |
1 /*
2 * First arg is the package prefix.
3 * Second arg is the name of the class minus the prefix.
4 *
5 * This does some behind-the-scenes magic so we can
6 * access howto_square_ff from python as howto.square_ff
7 */
8 GR_SWIG_BLOCK_MAGIC(howto,square_ff);
9