Changeset 62b6d17 in mainline for kernel/test/fpu/fpu1.c


Ignore:
Timestamp:
2006-12-14T16:47:36Z (18 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
aeaebcc
Parents:
55cc9bc
Message:

introduce uncounted threads, whose accounting doesn't affect accumulated task accounting
run tests in kconsole thread again

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/test/fpu/fpu1.c

    r55cc9bc r62b6d17  
    186186                thread_t *t;
    187187               
    188                 if (!(t = thread_create(e, NULL, TASK, 0, "e"))) {
     188                if (!(t = thread_create(e, NULL, TASK, 0, "e", false))) {
    189189                        printf("could not create thread %d\n", 2 * i);
    190190                        break;
     
    193193                total++;
    194194               
    195                 if (!(t = thread_create(pi, NULL, TASK, 0, "pi"))) {
     195                if (!(t = thread_create(pi, NULL, TASK, 0, "pi", false))) {
    196196                        printf("could not create thread %d\n", 2 * i + 1);
    197197                        break;
Note: See TracChangeset for help on using the changeset viewer.