Opened 16 years ago
Last modified 15 years ago
#226 closed defect
Assertion failed (missed_clock_ticks == 0) — at Initial Version
| Reported by: | Jakub Jermář | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | 0.4.3 |
| Component: | helenos/kernel/sparc64 | Version: | mainline |
| Keywords: | Cc: | ||
| Blocker for: | Depends on: | ||
| See also: |
Description
Running changeset:head,402 on a dual-CPU Ultra 60 machine hits the panic in clock.c:
/* Account lost ticks to CPU usage */
if (CPU->idle) {
ASSERT(missed_clock_ticks == 0);
CPU->idle_ticks++;
} else {
CPU->busy_ticks += missed_clock_ticks + 1;
}
CPU->idle = false;
Note:
See TracTickets
for help on using tickets.
