[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 03/09: runtime: possible bug fix for limite
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 03/09: runtime: possible bug fix for limited-run flowgraphs with message-only blocks. |
Date: |
Wed, 4 Feb 2015 21:59:34 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
jcorgan pushed a commit to branch master
in repository gnuradio.
commit 035b9d016dffefec890323bd0b24dbaf23aa9186
Author: Tom Rondeau <address@hidden>
Date: Wed Feb 4 13:06:14 2015 +0000
runtime: possible bug fix for limited-run flowgraphs with message-only
blocks.
---
gnuradio-runtime/lib/block.cc | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/gnuradio-runtime/lib/block.cc b/gnuradio-runtime/lib/block.cc
index 9173094..f26d6bb 100644
--- a/gnuradio-runtime/lib/block.cc
+++ b/gnuradio-runtime/lib/block.cc
@@ -750,7 +750,10 @@ namespace gr {
bool
block::finished()
{
- return d_finished;
+ if((detail()->ninputs() != 0) || (detail()->noutputs() != 0))
+ return false;
+ else
+ return d_finished;
}
- [Commit-gnuradio] [gnuradio] branch master updated (c815a01 -> 42c1d6d), git, 2015/02/04
- [Commit-gnuradio] [gnuradio] 01/09: digital: update control loop frequency limits in fll_band_edge_cc when samps_per_sym is changed, git, 2015/02/04
- [Commit-gnuradio] [gnuradio] 03/09: runtime: possible bug fix for limited-run flowgraphs with message-only blocks.,
git <=
- [Commit-gnuradio] [gnuradio] 05/09: Merge branch 'maint', git, 2015/02/04
- [Commit-gnuradio] [gnuradio] 02/09: uhd: Added set_stream_args() method to sink & source, git, 2015/02/04
- [Commit-gnuradio] [gnuradio] 08/09: Merge remote-tracking branch 'tom/runtime_msg_passing_finished', git, 2015/02/04
- [Commit-gnuradio] [gnuradio] 04/09: blocks: the API for the peak_detector blocks incorrectly uses int instead of float for setting alpha., git, 2015/02/04
- [Commit-gnuradio] [gnuradio] 07/09: Merge remote-tracking branch 'mbr0wn/uhd/stream_args', git, 2015/02/04
- [Commit-gnuradio] [gnuradio] 09/09: Merge remote-tracking branch 'tom/blocks/peak_det_api', git, 2015/02/04
- [Commit-gnuradio] [gnuradio] 06/09: Merge remote-tracking branch 'nowls/master', git, 2015/02/04