summaryrefslogtreecommitdiff
path: root/gnuradio-core/src/lib/runtime
AgeCommit message (Collapse)Author
2013-04-15gras: copied in standard header w/ correct datesJosh Blum
2013-04-15gras: make use of work buffer's vec callJosh Blum
2013-04-15gras: inline a bunch of wrapper callsJosh Blum
Also simplify the work by reusing work buffers mins already calculated
2013-04-14gras: runtime.i export a few more calls from blockJosh Blum
2013-03-31Merge branch 'maint' into v3.6.4git_gras_supportJosh Blum
Conflicts: gnuradio-core/src/lib/runtime/gr_block.cc gnuradio-core/src/lib/runtime/gr_block.h
2013-03-29core: addressing issue #529. Using vector<int> instead of vector<unsigned ↵Tom Rondeau
int> for affinity mask vector. This is wrong as the mask should be unsigned, but necessary for SWIG to work cleanly on both 32-bit and 64-bit platforms.
2013-03-21gras: moved the lock/unlock hereJosh Blum
2013-03-17gras: more changes to get compiling w/ maintJosh Blum
2013-03-17Merge branch 'maint' of https://github.com/guruofquality/gnuradio into ↵Josh Blum
v3.6.4git_gras_support Conflicts: gnuradio-core/src/lib/runtime/gr_block.cc gnuradio-core/src/lib/runtime/gr_block.h gnuradio-core/src/lib/runtime/gr_types.h
2013-03-07core: protect against popping a message off the queue if no handler is attached.Tom Rondeau
This mostly solves a problem with threads being launched in random order, so a handler might not be established yet, even if there is a message waiting. Fixes Issue #514.
2013-03-06gras: same changes to config structJosh Blum
2013-02-26core: adding a mutex as a protected member of gr_block for use in protecting ↵Tom Rondeau
set and work function access to variables. This is used in gr-analog's noise_source and gr-filter's fir_filter_XXX since these two cause particular problems (in next's channel model). This shows the use of the mutex for general protection when needed.
2013-02-25gras: changes for port config APIJosh Blum
2013-02-23gras: fix stupid multiple type traits error x86 machineJosh Blum
2013-02-23gras: well thats a duplicate nowJosh Blum
2013-02-23gras: implement io sig ontop of set/get size apiJosh Blum
2013-02-22gras: continuation from the last commitJosh Blum
Removed a bunch of GRAS_LIBRARIES, we do this in a common place to avoid extra changes. Added virtual destructors for many classes.
2013-02-22gras: linker stuff + moving around symbols and shitJosh Blum
Basically there were some issues on OSX linking, because gras wasnt explicitly specified, and was technically exposed by the gr wrappers. As part of this commit, some symbols were moved into the wrappers, and some of the interfaces which were in gras for backwards compat purposes, The compile is still going, but this already addresses a few issues. Now, I don't want to go copying every symbol over, the real solution is to link in gras into whatever library. Probably another commit to come...
2013-02-17Merge branch 'maint' into v3.6.4git_gras_supportJosh Blum
2013-02-16core: only query preferences database once at start of block_executor.Tom Rondeau
2013-02-16core: adding and using a PerfCounters section to the config files.Tom Rondeau
gr_block_executor will read the config files to determine if the perf counters are on or off.
2013-02-16core: adding new var perf. counters to swig interface.Tom Rondeau
2013-02-15core: adding variance calcs to perf. counters.Tom Rondeau
Using running mean/variance algorithm from Knuth's Art of Computer Programming.
2013-02-13Merge branch 'maint'Tom Rondeau
2013-02-13core: adding necessary include to gr_block_registry.hTim O'Shea
2013-02-12Merge remote-tracking branch 'reynwar/python_msg'Johnathan Corgan
2013-02-12Merge remote-tracking branch 'reynwar/min_output'Johnathan Corgan
2013-02-12core: typedef vector<unsigned int> so SWIG can handle including it multiple ↵Tom Rondeau
times.
2013-02-07sched: swiging perf counters into Python.Tom Rondeau
2013-02-07sched: adding in perf counters to measure performance of blocks during ↵Tom Rondeau
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
2013-02-06gruel: renamed mask to dword_maskNicholas Corgan
2013-02-06QA: adding a test to make sure the set_processor_affinity calls work and ↵Tom Rondeau
top_block starts correctly.
2013-02-06core: working thread affinity concept into gr_blocks.Tom Rondeau
Example in gnuradio-core/src/examples/mp-sched/affinity_set.py Documentation describing API in docs/doxygen/other/thread_affinity.dox
2013-01-31core: Enabling msg_connect within python blocks.Roy Thompson
2013-01-22core: Add min_noutput_items to gr_block.Ben Reynwar
2013-01-15Merge remote-tracking branch 'mbant/equal_for_tags'Tom Rondeau
2013-01-15core: added remove_tag_item()Martin Braun
2013-01-15core: added operator == for tagsMartin Braun
2013-01-13gras: fixed the misc issues w/ gr python blockJosh Blum
There was an bug in the get_tags_in_range impl, found incidentally. Just a little swig + python misc changes.
2013-01-13gras: support changeset for 3.6.4Josh Blum
used volk from next branch cf5c930d89ac89ba5a0da4a616c88d3c37e018ae for grextras support (it uses the dispatcher) empty stubs for the gr_basic_block msg passing. This is going to be difficult to figure out. The alias stuff may or may not be related most qa pass, there seems to be some additional issues, will be working through them on futher commits Conflicts: gnuradio-core/CMakeLists.txt gnuradio-core/src/lib/runtime/CMakeLists.txt gnuradio-core/src/lib/runtime/gr_block.cc gnuradio-core/src/lib/runtime/gr_block.h gnuradio-core/src/lib/runtime/gr_hier_block2.h gnuradio-core/src/lib/runtime/gr_top_block.h gnuradio-core/src/python/gnuradio/gr/__init__.py gr-audio/examples/c++/CMakeLists.txt gr-fcd/examples/c++/CMakeLists.txt grc/python/Port.py
2012-12-31core: fixed some unused parameter warningsAlexandru Csete
2012-12-121. msg passing logic fix for fan-in to hier block outputs and fan-out from ↵Tim O'Shea
hier block inputs 2. adding hier msg passing example
2012-12-07core: added gr_tuntap_pdu, gr_socket_pdu, and msg passing enhancementsTim O'Shea
2012-12-06core: Adding function to retrieve the symbol names of a blocks message ports.Tom Rondeau
Updated qa_pdu tests to verify this.
2012-12-03core: the mutex is unlocked to begin with and GR doesn't seem to like us ↵Tom Rondeau
forcing it unlocked here.
2012-11-30core: gr_blocks can now have only message ports with no general_work()Tim O'Shea
* msg only blocks now get thread context * added blocking msg queue delete call * added gr_message_strobe block * added grc definitions for message_debug, message_strobe, pdu_to_tagged_stream, tagged_stream_to_pdu. * allow message fan-in connections in GRC
2012-11-29Adding PDU to tagged stream and tagged stream to PDU blocks along with QA pythonJohnathan Corgan
non-stream-connected blocks still need a new thread context
2012-11-29core: adding msg_connect, updating msg interface, adding symbolic block namesTim O'Shea
2012-11-22runtime: changed check after cast to gr_block.Tom Rondeau
2012-11-22runtime: moved setting of min/max buffer sizes from gr_basic_block to gr_block.Tom Rondeau