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

    r37c57f2 rff14c520  
    197197         * Create kernel task.
    198198         */
    199         k = task_create(AS_KERNEL);
     199        k = task_create(AS_KERNEL, "KERNEL");
    200200        if (!k)
    201201                panic("can't create kernel task\n");
     
    204204         * Create the first thread.
    205205         */
    206         t = thread_create(kinit, NULL, k, 0);
     206        t = thread_create(kinit, NULL, k, 0, "kinit");
    207207        if (!t)
    208208                panic("can't create kinit thread\n");
Note: See TracChangeset for help on using the changeset viewer.