From 5a2358d4eaa46f067d4b844fe944617fda047520 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Fri, 13 Aug 2004 19:29:08 +0000 Subject: [PATCH] Clarified output, so that you don't have to wait forever. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8562 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kernel/apps/testapp/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kernel/apps/testapp/main.c b/src/kernel/apps/testapp/main.c index 15255a4c34..e6fe8e04ef 100644 --- a/src/kernel/apps/testapp/main.c +++ b/src/kernel/apps/testapp/main.c @@ -397,7 +397,7 @@ int main(int argc, char **argv) thread_id id; static double f[5] = { 2.43, 5.23, 342.34, 234123.2, 1.4 }; - printf("spawning a few floating point crunchers\n"); + printf("spawning a few floating point crunchers (press key to continue)\n"); id = spawn_thread(&fpu_cruncher_thread, "fpu thread0", B_NORMAL_PRIORITY, &f[0]); resume_thread(id);