diff options
Diffstat (limited to 'src/user/app/test/main.c')
-rw-r--r-- | src/user/app/test/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/user/app/test/main.c b/src/user/app/test/main.c index e691d6f..d235c57 100644 --- a/src/user/app/test/main.c +++ b/src/user/app/test/main.c @@ -43,8 +43,8 @@ int main(char** args) { printk("\n"); } - printk("(test) Creating thread cascade (total 2**6 = 64 threads)\n"); - thread_new(thread_cascade, (void*)6); + printk("(test) Creating thread cascade (total 2**5 = 32 threads)\n"); + thread_new(thread_cascade, (void*)5); while (1) { thread_sleep(100); |