diff options
author | Alex AUVOLAT <alexis211@gmail.com> | 2012-05-19 14:07:01 +0200 |
---|---|---|
committer | Alex AUVOLAT <alexis211@gmail.com> | 2012-05-19 14:07:01 +0200 |
commit | 0d2f7645c3fb45d83497faf2a4b6fff8c3f175d1 (patch) | |
tree | a9038fce4cf81556fbdd5589caee8f4e9bfc5185 /src/user/app/test | |
parent | 499ca6c243b05da176a2d4bd9a2317f0b28afc7f (diff) | |
download | TCE-0d2f7645c3fb45d83497faf2a4b6fff8c3f175d1.tar.gz TCE-0d2f7645c3fb45d83497faf2a4b6fff8c3f175d1.zip |
Added string class for FWIK.
Diffstat (limited to 'src/user/app/test')
-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; } |