diff options
author | Josh Blum | 2013-03-16 04:18:37 -0700 |
---|---|---|
committer | Josh Blum | 2013-03-16 04:18:37 -0700 |
commit | cebd974738fea792f70bca8ab0bb1d73e2116d81 (patch) | |
tree | fe53f1ce5795385ac257430912ae2d9bc4129120 /lib/input_handlers.cpp | |
parent | 7cc848c9e69dd3c1f70e2872f1a4fb2043c94e66 (diff) | |
download | sandhi-cebd974738fea792f70bca8ab0bb1d73e2116d81.tar.gz sandhi-cebd974738fea792f70bca8ab0bb1d73e2116d81.tar.bz2 sandhi-cebd974738fea792f70bca8ab0bb1d73e2116d81.zip |
gras: added num_read count for pop msg to fix #53
Diffstat (limited to 'lib/input_handlers.cpp')
-rw-r--r-- | lib/input_handlers.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/input_handlers.cpp b/lib/input_handlers.cpp index e55f72e..c15885d 100644 --- a/lib/input_handlers.cpp +++ b/lib/input_handlers.cpp @@ -40,6 +40,7 @@ void BlockActor::handle_input_buffer(const InputBufferMessage &message, const Th if (this->block_state == BLOCK_STATE_DONE) return; this->input_queues.push(index, message.buffer); this->inputs_available.set(index); + ta.done(); this->handle_task(); } |