summaryrefslogtreecommitdiff
path: root/lib/input_handlers.cpp
diff options
context:
space:
mode:
authorJosh Blum2013-04-14 02:07:40 -0700
committerJosh Blum2013-04-14 02:07:40 -0700
commit277dd31b08afcadceec7852012aa8b3c2cecbea7 (patch)
treeb5c06f46c13365dbe2489638496d867221e3ef8c /lib/input_handlers.cpp
parent82af15c5e7a69b116214cb6de99f9095852934d0 (diff)
downloadsandhi-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.cpp6
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();