From: Martin Lucina Date: Fri, 7 Nov 2014 17:17:00 +0000 (+0100) Subject: Minor improvement to hello demo X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=038ec394c921b5fed8c3e3afee4e09125726dc8c;p=rumpuser-xen.git Minor improvement to hello demo Sleep in the demo to prove at least scheduling is working after all the renaming changes. Signed-off-by: Martin Lucina --- diff --git a/tests/hello/hello.c b/tests/hello/hello.c index ed04dd2..4859dbb 100644 --- a/tests/hello/hello.c +++ b/tests/hello/hello.c @@ -3,5 +3,8 @@ int main (int argc, char *argv[]) { printf ("Hello, world!\n"); + printf ("Sleeping 5s...\n"); + sleep (5); + printf ("Goodbye, world!\n"); return 0; }