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

    r37c57f2 rff14c520  
    618618         * let's not be interrupted */
    619619        ipl = interrupts_disable();
    620         printf("Scheduler dump:\n");
    621620        for (cpu=0;cpu < config.cpu_count; cpu++) {
    622621
     
    625624
    626625                spinlock_lock(&cpus[cpu].lock);
    627                 printf("cpu%d: nrdy: %d, needs_relink: %d\n",
    628                        cpus[cpu].id, atomic_get(&cpus[cpu].nrdy), cpus[cpu].needs_relink);
     626                printf("cpu%d: address=%P, nrdy=%d, needs_relink=%d\n",
     627                       cpus[cpu].id, &cpus[cpu], atomic_get(&cpus[cpu].nrdy), cpus[cpu].needs_relink);
    629628               
    630629                for (i=0; i<RQ_COUNT; i++) {
Note: See TracChangeset for help on using the changeset viewer.