commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] [gnuradio] 02/18: runtime: allow blocks w/ only msg in


From: git
Subject: [Commit-gnuradio] [gnuradio] 02/18: runtime: allow blocks w/ only msg inputs to exit
Date: Fri, 1 Jul 2016 16:25:44 +0000 (UTC)

This is an automated email from the git hooks/post-receive script.

jcorgan pushed a commit to branch next
in repository gnuradio.

commit 2a1a9e8ce8112c3ff8e5fd0fbdfd81034cf3bd1f
Author: Bastian Bloessl <address@hidden>
Date:   Thu Apr 21 07:26:14 2016 +0200

    runtime: allow blocks w/ only msg inputs to exit
---
 gnuradio-runtime/lib/block.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnuradio-runtime/lib/block.cc b/gnuradio-runtime/lib/block.cc
index e260dfe..10c2cbc 100644
--- a/gnuradio-runtime/lib/block.cc
+++ b/gnuradio-runtime/lib/block.cc
@@ -749,7 +749,7 @@ namespace gr {
   bool
   block::finished()
   {
-    if((detail()->ninputs() != 0) || (detail()->noutputs() != 0))
+    if(detail()->ninputs() != 0)
       return false;
     else
       return d_finished;



reply via email to

[Prev in Thread] Current Thread [Next in Thread]