summaryrefslogtreecommitdiff
path: root/gnuradio-core/src/lib/runtime
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | core: adding new var perf. counters to swig interface.Tom Rondeau2013-02-161-1/+8
| | | |
* | | | core: adding variance perf. counters to ctrlport.Tom Rondeau2013-02-151-5/+35
| | | |
* | | | Merge branch 'master' into nextTom Rondeau2013-02-154-18/+260
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: gnuradio-core/src/lib/runtime/gr_block.cc gnuradio-core/src/lib/runtime/gr_block.h gnuradio-core/src/lib/runtime/gr_block_detail.h
| * | | core: adding variance calcs to perf. counters.Tom Rondeau2013-02-154-18/+260
| | | | | | | | | | | | | | | | Using running mean/variance algorithm from Knuth's Art of Computer Programming.
| * | | Merge branch 'maint'Tom Rondeau2013-02-131-0/+1
| |\ \ \
| | * | | core: adding necessary include to gr_block_registry.hTim O'Shea2013-02-131-0/+1
| | | | |
* | | | | Merge branch 'master' into nextTom Rondeau2013-02-131-1/+1
|\ \ \ \ \
| * | | | | core: change order of variables to clean up warning.Tom Rondeau2013-02-131-1/+1
| | | | | |
| * | | | | core: adding necessary include to gr_block_registry.hTim O'Shea2013-02-131-0/+1
| |/ / / /
* | | | | Merge branch 'next' of gnuradio.org:gnuradio into nextTom Rondeau2013-02-134-30/+49
|\ \ \ \ \
| * | | | | Merge branch 'master' into nextJohnathan Corgan2013-02-121-12/+13
| |\| | | | | | | | | | | | | | | | | | | | | | Adjusted pmt usage for naming
| | * | | | Merge remote-tracking branch 'reynwar/python_msg'Johnathan Corgan2013-02-121-12/+13
| | |\ \ \ \
| | | * | | | core: Enabling msg_connect within python blocks.Roy Thompson2013-01-311-12/+13
| | | | | | |
| * | | | | | Merge branch 'master' into nextJohnathan Corgan2013-02-123-18/+36
| |\| | | | |
| | * | | | | Merge remote-tracking branch 'reynwar/min_output'Johnathan Corgan2013-02-123-18/+36
| | |\ \ \ \ \
| | | * | | | | core: Add min_noutput_items to gr_block.Ben Reynwar2013-01-223-18/+36
| | | |/ / / /
* | | | | | | core: adding necessary include to gr_block_registry.hTim O'Shea2013-02-131-0/+1
| | | | | | |
* | | | | | | 1. adding some support for int and uint8 vector typesTim O'Shea2013-02-132-10/+93
|/ / / / / / | | | | | | | | | | | | | | | | | | 2. adding rpcbasic_register_variable_rw (be careful with this)
* | | | | | Merge branch 'master' into nextTom Rondeau2013-02-122-2/+3
|\| | | | |
| * | | | | core: typedef vector<unsigned int> so SWIG can handle including it multiple ↵Tom Rondeau2013-02-122-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | times.
* | | | | | sched: added ControlPort interface to setup and access perf counters.Tom Rondeau2013-02-077-2/+78
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: gnuradio-core/src/lib/runtime/gr_block.h
* | | | | | Merge branch 'master' into nextTom Rondeau2013-02-076-1/+240
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: CMakeLists.txt
| * | | | | sched: swiging perf counters into Python.Tom Rondeau2013-02-071-0/+9
| | | | | |
| * | | | | sched: adding in perf counters to measure performance of blocks during ↵Tom Rondeau2013-02-075-1/+231
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | exectution of flowgraph. Conflicts: CMakeLists.txt gnuradio-core/src/lib/runtime/gr_block.cc gnuradio-core/src/lib/runtime/gr_block_detail.cc gnuradio-core/src/lib/runtime/gr_block_detail.h
* | | | | | Merge branch 'master' into nextTom Rondeau2013-02-078-0/+115
|\| | | | |
| * | | | | gruel: renamed mask to dword_maskNicholas Corgan2013-02-061-0/+1
| | | | | |
| * | | | | QA: adding a test to make sure the set_processor_affinity calls work and ↵Tom Rondeau2013-02-062-0/+28
| | | | | | | | | | | | | | | | | | | | | | | | top_block starts correctly.
| * | | | | core: working thread affinity concept into gr_blocks.Tom Rondeau2013-02-066-0/+86
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | Example in gnuradio-core/src/examples/mp-sched/affinity_set.py Documentation describing API in docs/doxygen/other/thread_affinity.dox
* | | | | ctrlport: fixing interface to rpcbasic_register_variable for new API to ↵Tom Rondeau2013-02-041-3/+2
| | | | | | | | | | | | | | | | | | | | other functions.
* | | | | ctrlport: adding back old (almost) style API for controlport.Tom Rondeau2013-02-041-0/+99
| | | | | | | | | | | | | | | | | | | | Allows us to create controlport interfaces from a name and object pointer and not just the alias of a gr_basic_block.
* | | | | ctrlport: Changed RPC setup call to only require block's alias and not all ↵Tom Rondeau2013-01-236-25/+70
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | of the other info we used to require. gr_top_block shows the new interface. The flowgraph now automatically calls setup_rpc on every block when the flowgraph is run. No need to have setup_rpc() in the block's constructor.
* | | | | core: exporting the block registry (for RPC setup).Tom Rondeau2013-01-231-2/+3
| | | | |
* | | | | digital: fixed up examples for the updated location of blocks.Tom Rondeau2013-01-151-2/+2
| | | | |
* | | | | Merge branch 'master' into nextTom Rondeau2013-01-157-2/+92
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: gr-digital/examples/demod/ber_simulation.grc gr-digital/examples/demod/digital_freq_lock.grc gr-digital/examples/demod/pam_sync.grc gr-digital/examples/demod/pam_timing.grc
| * | | | Merge remote-tracking branch 'mbant/equal_for_tags'Tom Rondeau2013-01-157-2/+92
| |\ \ \ \ | | |/ / / | |/| | |
| | * | | core: added remove_tag_item()Martin Braun2013-01-156-2/+87
| | | | |
| | * | | core: added operator == for tagsMartin Braun2013-01-151-0/+5
| | | | |
* | | | | pmt: fixing a few files with older pmt naming style.Tom Rondeau2013-01-131-92/+90
| | | | |
* | | | | ctrlport: removing unused and unecessary file.Tom Rondeau2013-01-021-126/+0
| | | | |
* | | | | Merge branch 'pmt_rename' into nextTom Rondeau2013-01-0213-104/+98
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: gnuradio-core/src/lib/io/gr_pdu.cc gruel/src/lib/pmt/pmt.cc gruel/src/lib/pmt/qa_pmt_prims.cc gruel/src/lib/pmt/unv_template.cc.t gruel/src/swig/pmt_swig.i
| * | | | | gruel: updating all GR blocks that use PMTs to use new naming.Tom Rondeau2012-12-2113-104/+98
| | | | | |
* | | | | | Merge branch 'master' into nextJohnathan Corgan2012-12-312-11/+11
|\ \ \ \ \ \ | | |/ / / / | |/| | | |
| * | | | | core: fixed some unused parameter warningsAlexandru Csete2012-12-312-11/+11
| | |/ / / | |/| | |
* | | | | blocks: removes blocks moved to gr-blocks from gnuradio-core.Tom Rondeau2012-12-212-4/+5
| |/ / / |/| | | | | | | | | | | Also fixes up some other missing moves.
* | | | Merge branch 'master' into nextTom Rondeau2012-12-123-3/+30
|\| | |
| * | | 1. msg passing logic fix for fan-in to hier block outputs and fan-out from ↵Tim O'Shea2012-12-123-3/+30
| | | | | | | | | | | | | | | | | | | | | | | | hier block inputs 2. adding hier msg passing example
* | | | build: fixes to build with PMTs and ControlPort.Tom Rondeau2012-12-071-1/+1
| | | |
* | | | core: fix missing gr_basic_block variable after merge fixupJohnathan Corgan2012-12-071-0/+2
| | | |
* | | | Merge branch 'master' into nextJohnathan Corgan2012-12-0711-236/+485
|\| | | | | | | | | | | | | | | | | | | Conflicts: gnuradio-core/src/lib/runtime/gr_basic_block.h
| * | | core: added gr_tuntap_pdu, gr_socket_pdu, and msg passing enhancementsTim O'Shea2012-12-0711-233/+488
| | | |