Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/interrupt/interrupt.c

    re4d96e9 r63e27ef  
    4040 */
    4141
     42#include <assert.h>
    4243#include <interrupt.h>
    43 #include <debug.h>
    4444#include <console/kconsole.h>
    4545#include <console/console.h>
     
    7676{
    7777#if (IVT_ITEMS > 0)
    78         ASSERT(n < IVT_ITEMS);
     78        assert(n < IVT_ITEMS);
    7979#endif
    8080       
     
    102102{
    103103#if (IVT_ITEMS > 0)
    104         ASSERT(n < IVT_ITEMS);
     104        assert(n < IVT_ITEMS);
    105105#endif
    106106       
     
    112112        }
    113113       
    114         /* Account CPU usage if it has waked up from sleep */
    115         if (CPU) {
     114        /* Account CPU usage if it woke up from sleep */
     115        if (CPU && CPU->idle) {
    116116                irq_spinlock_lock(&CPU->lock, false);
    117                 if (CPU->idle) {
    118                         uint64_t now = get_cycle();
    119                         CPU->idle_cycles += now - CPU->last_cycle;
    120                         CPU->last_cycle = now;
    121                         CPU->idle = false;
    122                 }
     117                uint64_t now = get_cycle();
     118                CPU->idle_cycles += now - CPU->last_cycle;
     119                CPU->last_cycle = now;
     120                CPU->idle = false;
    123121                irq_spinlock_unlock(&CPU->lock, false);
    124122        }
Note: See TracChangeset for help on using the changeset viewer.