Ignore:
File:
1 edited

Legend:

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

    rd0c82c5 rb584cd4  
    9999void exc_dispatch(unsigned int n, istate_t *istate)
    100100{
    101         ASSERT(CPU);
    102        
    103101#if (IVT_ITEMS > 0)
    104102        ASSERT(n < IVT_ITEMS);
     
    111109                irq_spinlock_unlock(&THREAD->lock, false);
    112110        }
    113        
    114         /* Account CPU usage if it has waked up from sleep */
    115         irq_spinlock_lock(&CPU->lock, false);
    116         if (CPU->idle) {
    117                 uint64_t now = get_cycle();
    118                 CPU->idle_cycles += now - CPU->last_cycle;
    119                 CPU->last_cycle = now;
    120                 CPU->idle = false;
    121         }
    122         irq_spinlock_unlock(&CPU->lock, false);
    123111       
    124112        uint64_t begin_cycle = get_cycle();
Note: See TracChangeset for help on using the changeset viewer.