Changeset 077842c in mainline for kernel/generic/src/proc/scheduler.c
- Timestamp:
- 2018-09-07T15:46:41Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e9d2905
- Parents:
- 78de83de
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/proc/scheduler.c
r78de83de r077842c 530 530 log(LF_OTHER, LVL_DEBUG, 531 531 "cpu%u: tid %" PRIu64 " (priority=%d, ticks=%" PRIu64 532 ", nrdy=% " PRIua ")", CPU->id, THREAD->tid, THREAD->priority,532 ", nrdy=%zu)", CPU->id, THREAD->tid, THREAD->priority, 533 533 THREAD->ticks, atomic_get(&CPU->nrdy)); 534 534 #endif … … 739 739 irq_spinlock_lock(&cpus[cpu].lock, true); 740 740 741 printf("cpu%u: address=%p, nrdy=% " PRIua ", needs_relink=%zu\n",741 printf("cpu%u: address=%p, nrdy=%zu, needs_relink=%zu\n", 742 742 cpus[cpu].id, &cpus[cpu], atomic_get(&cpus[cpu].nrdy), 743 743 cpus[cpu].needs_relink);
Note:
See TracChangeset
for help on using the changeset viewer.