Luna/kernel/include/interrupts/Interrupts.h

11 lines
184 B
C
Raw Normal View History

2022-09-05 14:13:51 +00:00
#pragma once
#include "interrupts/Context.h"
2022-09-05 14:13:51 +00:00
namespace Interrupts
{
void enable();
void disable();
bool is_in_handler();
void return_from_handler(Context* context);
2022-09-05 14:13:51 +00:00
}