diff options
Diffstat (limited to 'src/user/app/test/main.c')
-rw-r--r-- | src/user/app/test/main.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/user/app/test/main.c b/src/user/app/test/main.c index 5940cae..e691d6f 100644 --- a/src/user/app/test/main.c +++ b/src/user/app/test/main.c @@ -35,7 +35,7 @@ void thread_cascade(void* d) { int main(char** args) { char**a; if (args != 0) { - printk("args"); + printk("(test) args"); for (a = args; *a != 0; a++) { printk(" - "); printk(*a); @@ -43,14 +43,14 @@ int main(char** args) { printk("\n"); } - printk(" -> Creating thread cascade (total 2**4 = 16 threads)\n"); - thread_new(thread_cascade, (void*)4); + printk("(test) Creating thread cascade (total 2**6 = 64 threads)\n"); + thread_new(thread_cascade, (void*)6); while (1) { thread_sleep(100); if (threads == 0) break; } - printk("\n -> Test process exiting. Press the super key to go to the home terminal.\n"); + printk("\n(test) Test process exiting. Press the super key to go to the home terminal.\n"); return 0; } |