From 038ec394c921b5fed8c3e3afee4e09125726dc8c Mon Sep 17 00:00:00 2001 From: Martin Lucina Date: Fri, 7 Nov 2014 18:17:00 +0100 Subject: [PATCH] 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 --- tests/hello/hello.c | 3 +++ 1 file changed, 3 insertions(+) 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; } -- 2.39.5