Changeset ff14c520 in mainline for test/synch/rwlock5/test.c


Ignore:
Timestamp:
2006-03-16T22:31:39Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
93165be
Parents:
37c57f2
Message:

It is now possible to associate symbolic names with both threads and tasks.
More verbose kconsole threads, tasks and scheduler commands.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • test/synch/rwlock5/test.c

    r37c57f2 rff14c520  
    9696                for (j=0; j<(READERS+WRITERS)/2; j++) {
    9797                        for (k=0; k<i; k++) {
    98                                 thrd = thread_create(reader, NULL, TASK, 0);
     98                                thrd = thread_create(reader, NULL, TASK, 0, "reader");
    9999                                if (thrd)
    100100                                        thread_ready(thrd);
     
    103103                        }
    104104                        for (k=0; k<(4-i); k++) {
    105                                 thrd = thread_create(writer, NULL, TASK, 0);
     105                                thrd = thread_create(writer, NULL, TASK, 0, "writer");
    106106                                if (thrd)
    107107                                        thread_ready(thrd);
Note: See TracChangeset for help on using the changeset viewer.