[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 01/02: runtime: fixed spacing; was confusin
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 01/02: runtime: fixed spacing; was confusing how the conditions line up. |
Date: |
Fri, 8 Apr 2016 16:06:34 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
jcorgan pushed a commit to branch maint
in repository gnuradio.
commit 7b54f82add2af06c5b2e37830709b4459e0058d4
Author: Tom Rondeau <address@hidden>
Date: Fri Apr 8 11:22:46 2016 -0400
runtime: fixed spacing; was confusing how the conditions line up.
---
gnuradio-runtime/lib/tpb_thread_body.cc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnuradio-runtime/lib/tpb_thread_body.cc
b/gnuradio-runtime/lib/tpb_thread_body.cc
index d80ab86..e0aacb4 100644
--- a/gnuradio-runtime/lib/tpb_thread_body.cc
+++ b/gnuradio-runtime/lib/tpb_thread_body.cc
@@ -152,9 +152,9 @@ namespace gr {
while(!d->d_tpb.input_changed && block->empty_handled_p()){
boost::system_time const timeout=boost::get_system_time()+
boost::posix_time::milliseconds(250);
if(!d->d_tpb.input_cond.timed_wait(guard, timeout)){
- goto tpb_loop_top; // timeout occured (perform sanity checks
up top)
- }
+ goto tpb_loop_top; // timeout occured (perform sanity checks up
top)
}
+ }
// handle all pending messages
BOOST_FOREACH(basic_block::msg_queue_map_t::value_type &i,
block->msg_queue) {