diff --git a/hello_tutorial/run/hello.run b/hello_tutorial/run/hello.run index 075bceb52..e93430e40 100644 --- a/hello_tutorial/run/hello.run +++ b/hello_tutorial/run/hello.run @@ -15,14 +15,11 @@ install_config { + - - - - diff --git a/hello_tutorial/src/hello/client/main.cc b/hello_tutorial/src/hello/client/main.cc index c3a69b172..daa4dc91d 100644 --- a/hello_tutorial/src/hello/client/main.cc +++ b/hello_tutorial/src/hello/client/main.cc @@ -14,7 +14,6 @@ #include #include #include -#include #include using namespace Genode; @@ -23,15 +22,11 @@ int main(void) { Hello::Connection h; - Timer::Connection timer; - while (1) { h.say_hello(); - timer.msleep(1000); int foo = h.add(2, 5); PDBG("Added 2 + 5 = %d", foo); - timer.msleep(1000); } return 0;