Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 302 → Rev 303

/shark/trunk/oslib/kl/event1.c
113,7 → 113,7
pit_setconstant(0, tnext);
} else {
tnext = (signed long long)(tnext) * apic_clk_per_msec / 1000;
setup_APIC_LVTT(tnext);
set_APIC_timer(tnext);
}
}
}
199,7 → 199,7
pit_setconstant(0, tnext);
} else {
tnext = (signed long long)(tnext) * apic_clk_per_msec / 1000;
setup_APIC_LVTT(tnext);
set_APIC_timer(tnext);
}
activeEvent = 0;
} else {
206,7 → 206,7
if (!use_apic) {
pit_setconstant(0, 0xFFFF);
} else {
setup_APIC_LVTT(0xFFFFFFFF);
set_APIC_timer(0xFFFFFFFF);
}
}
}
243,7 → 243,7
if (!use_apic) {
pit_setconstant(0, 0xFFFF);
} else {
setup_APIC_LVTT(0xFFFFFFFF);
set_APIC_timer(0xFFFFFFFF);
}
} else {
if (firstdeleted) {
260,7 → 260,7
pit_setconstant(0, tnext);
} else {
tnext = (signed long long)(tnext) * apic_clk_per_msec / 1000;
setup_APIC_LVTT(tnext);
set_APIC_timer(tnext);
}
}
}