11 lines
194 B
C++
11 lines
194 B
C++
#pragma once
|
|
#include "interrupts/SavedContext.h"
|
|
|
|
namespace Interrupts
|
|
{
|
|
void enable();
|
|
void disable();
|
|
|
|
bool is_in_handler();
|
|
void return_from_handler(SavedContext* context);
|
|
} |