Changeset ff14c520 in mainline for arch/sparc64/src/sparc64.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
  • arch/sparc64/src/sparc64.c

    r37c57f2 rff14c520  
    5858         * Create thread that reads characters from OFW's input.
    5959         */
    60         t = thread_create(kofwinput, NULL, TASK, 0);
     60        t = thread_create(kofwinput, NULL, TASK, 0, "kofwinput");
    6161        if (!t)
    6262                panic("cannot create kofwinput\n");
     
    6666         * Create thread that polls keyboard.
    6767         */
    68         t = thread_create(kkbdpoll, NULL, TASK, 0);
     68        t = thread_create(kkbdpoll, NULL, TASK, 0, "kkbdpoll");
    6969        if (!t)
    7070                panic("cannot create kkbdpoll\n");
Note: See TracChangeset for help on using the changeset viewer.