summaryrefslogtreecommitdiff
path: root/lib/gras_impl
diff options
context:
space:
mode:
authorJosh Blum2013-03-31 20:41:04 -0700
committerJosh Blum2013-03-31 20:41:04 -0700
commite93c4eee812900480b5b2a8c7deab77417cdf448 (patch)
treec99af1370859d93fa506baeaaf35c9001a179bf7 /lib/gras_impl
parent36b49de271c778a1645d27d16cc2e8f4007bed73 (diff)
downloadsandhi-e93c4eee812900480b5b2a8c7deab77417cdf448.tar.gz
sandhi-e93c4eee812900480b5b2a8c7deab77417cdf448.tar.bz2
sandhi-e93c4eee812900480b5b2a8c7deab77417cdf448.zip
gras: fix #60 by checking done logic after handler
Diffstat (limited to 'lib/gras_impl')
-rw-r--r--lib/gras_impl/block_actor.hpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/gras_impl/block_actor.hpp b/lib/gras_impl/block_actor.hpp
index 9006d6e..e620d77 100644
--- a/lib/gras_impl/block_actor.hpp
+++ b/lib/gras_impl/block_actor.hpp
@@ -130,6 +130,13 @@ struct BlockActor : Apology::Worker
if (this->is_work_allowed()) this->Send(SelfKickMessage(), this->GetAddress());
}
+ GRAS_FORCE_INLINE void update_input_avail(const size_t i)
+ {
+ const bool has_input_bufs = not this->input_queues.empty(i) and this->input_queues.ready(i);
+ const bool has_input_msgs = not this->input_msgs[i].empty();
+ this->inputs_available.set(i, has_input_bufs or has_input_msgs);
+ }
+
GRAS_FORCE_INLINE bool is_input_done(const size_t i)
{
return this->inputs_done[i] and not this->inputs_available[i];