mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-07-11 07:19:20 +00:00
Updated tasking
This commit is contained in:
@ -261,14 +261,7 @@ namespace ACPI
|
||||
uint8_t PM1_CNT_LEN = 0;
|
||||
|
||||
ACPI *acpi;
|
||||
|
||||
#if defined(__amd64__)
|
||||
void OnInterruptReceived(CPU::x64::TrapFrame *Frame);
|
||||
#elif defined(__i386__)
|
||||
void OnInterruptReceived(void *Frame);
|
||||
#elif defined(__aarch64__)
|
||||
void OnInterruptReceived(void *Frame);
|
||||
#endif
|
||||
|
||||
public:
|
||||
bool ACPIShutdownSupported = false;
|
||||
|
@ -212,10 +212,7 @@ namespace InterruptDescriptorTable
|
||||
|
||||
/* Reserved by OS */
|
||||
|
||||
__attribute__((naked, used, no_stack_protector)) void InterruptHandler_0x30() { asm("pushq $0\npushq $"
|
||||
"0x30"
|
||||
"\n"
|
||||
"jmp SchedulerInterruptStub\n"); }
|
||||
INTERRUPT_HANDLER(0x30)
|
||||
INTERRUPT_HANDLER(0x31)
|
||||
INTERRUPT_HANDLER(0x32)
|
||||
INTERRUPT_HANDLER(0x33)
|
||||
|
Reference in New Issue
Block a user