7 lines
188 B
C++
7 lines
188 B
C++
void InterruptService::allowHardwareInterrupt(InterruptRequest interrupt) {
|
|
if (Apic::isEnabled()) {
|
|
Apic::allow(interrupt);
|
|
} else {
|
|
Pic::allow(interrupt);
|
|
}
|
|
} |