Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2633 → Rev 2634

/trunk/kernel/arch/mips32/src/interrupt.c
110,11 → 110,10
{
unsigned long drift;
if (cp0_count_read() < lastcount) {
/* Count overflow detection */
if (cp0_count_read() < lastcount)
/* Count overflow detected */
count_hi++;
lastcount = cp0_count_read();
}
lastcount = cp0_count_read();
drift = cp0_count_read() - nextcount;
while (drift > cp0_compare_value) {