Changeset ff14c520 in mainline for generic/src/proc/scheduler.c
- Timestamp:
- 2006-03-16T22:31:39Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 93165be
- Parents:
- 37c57f2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/proc/scheduler.c
r37c57f2 rff14c520 618 618 * let's not be interrupted */ 619 619 ipl = interrupts_disable(); 620 printf("Scheduler dump:\n");621 620 for (cpu=0;cpu < config.cpu_count; cpu++) { 622 621 … … 625 624 626 625 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); 629 628 630 629 for (i=0; i<RQ_COUNT; i++) {
Note:
See TracChangeset
for help on using the changeset viewer.