Changeset 62b6d17 in mainline for kernel/test/synch/semaphore1.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/synch/semaphore1.c

    r55cc9bc r62b6d17  
    9191                for (j = 0; j < (CONSUMERS + PRODUCERS) / 2; j++) {
    9292                        for (k = 0; k < i; k++) {
    93                                 thrd = thread_create(consumer, NULL, TASK, 0, "consumer");
     93                                thrd = thread_create(consumer, NULL, TASK, 0, "consumer", false);
    9494                                if (thrd)
    9595                                        thread_ready(thrd);
     
    9898                        }
    9999                        for (k = 0; k < (4 - i); k++) {
    100                                 thrd = thread_create(producer, NULL, TASK, 0, "producer");
     100                                thrd = thread_create(producer, NULL, TASK, 0, "producer", false);
    101101                                if (thrd)
    102102                                        thread_ready(thrd);
Note: See TracChangeset for help on using the changeset viewer.