diff options
author | Josh Blum | 2013-04-14 02:07:40 -0700 |
---|---|---|
committer | Josh Blum | 2013-04-14 02:07:40 -0700 |
commit | 277dd31b08afcadceec7852012aa8b3c2cecbea7 (patch) | |
tree | b5c06f46c13365dbe2489638496d867221e3ef8c /lib/input_handlers.cpp | |
parent | 82af15c5e7a69b116214cb6de99f9095852934d0 (diff) | |
download | sandhi-277dd31b08afcadceec7852012aa8b3c2cecbea7.tar.gz sandhi-277dd31b08afcadceec7852012aa8b3c2cecbea7.tar.bz2 sandhi-277dd31b08afcadceec7852012aa8b3c2cecbea7.zip |
gras: move code into component files
Diffstat (limited to 'lib/input_handlers.cpp')
-rw-r--r-- | lib/input_handlers.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/input_handlers.cpp b/lib/input_handlers.cpp index c82efb3..da16ba4 100644 --- a/lib/input_handlers.cpp +++ b/lib/input_handlers.cpp @@ -29,7 +29,7 @@ void BlockActor::handle_input_msg(const InputMsgMessage &message, const Theron:: this->update_input_avail(index); ta.done(); - this->handle_task(); + this->task_main(); } void BlockActor::handle_input_buffer(const InputBufferMessage &message, const Theron::Address) @@ -44,7 +44,7 @@ void BlockActor::handle_input_buffer(const InputBufferMessage &message, const Th this->update_input_avail(index); ta.done(); - this->handle_task(); + this->task_main(); } void BlockActor::handle_input_token(const InputTokenMessage &message, const Theron::Address) @@ -68,7 +68,7 @@ void BlockActor::handle_input_check(const InputCheckMessage &message, const Ther //upstream done, give it one more attempt at task handling ta.done(); - this->handle_task(); + this->task_main(); //now recheck the status, mark block done if the input is done if (this->is_input_done(index)) this->mark_done(); |