diff options
author | Alex AUVOLAT <alexis211@gmail.com> | 2012-05-19 16:38:56 +0200 |
---|---|---|
committer | Alex AUVOLAT <alexis211@gmail.com> | 2012-05-19 16:38:56 +0200 |
commit | d502fce7d4db492690e39c72fc029aa05a65057d (patch) | |
tree | a5797a97212fff8142dc7f61792facca07c904eb /src/user/app/test | |
parent | 8e07c1db6ba4bedd0f8fe537a6fb0ca80e5d25f4 (diff) | |
download | TCE-d502fce7d4db492690e39c72fc029aa05a65057d.tar.gz TCE-d502fce7d4db492690e39c72fc029aa05a65057d.zip |
More improvements in FWIK - more strings, Dir class, ...
Diffstat (limited to 'src/user/app/test')
-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); |