From b2947d2187263b5c1247afe2b524847e00297b97 Mon Sep 17 00:00:00 2001 From: Wolfgang Faust Date: Wed, 14 Jan 2015 13:00:53 -0500 Subject: [PATCH] Add filenames to code snippets in hello_tutorial Fixes #1369 --- repos/hello_tutorial/doc/hello_tutorial.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/repos/hello_tutorial/doc/hello_tutorial.txt b/repos/hello_tutorial/doc/hello_tutorial.txt index 9773109e7..af19f269d 100644 --- a/repos/hello_tutorial/doc/hello_tutorial.txt +++ b/repos/hello_tutorial/doc/hello_tutorial.txt @@ -117,6 +117,7 @@ Writing server code ################### Now let's write a server providing the interface defined by _Hello::Session_. +We will put all of this code in 'src/hello/server/main.cc' Implementing the server side @@ -331,6 +332,8 @@ Afterwards, we create a 'Hello::Session_client' object with it and invoke calls. addition, we use the Timer service that comes with Genode. This server enables us to sleep for a certain amount of milliseconds. +Put this code into 'src/hello/client/main.cc': + !#include !#include !#include