mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-25 22:14:37 +00:00
18 lines
343 B
C++
18 lines
343 B
C++
#ifndef __FENNIX_KERNEL_CRASH_HANDELR_H__
|
|
#define __FENNIX_KERNEL_CRASH_HANDELR_H__
|
|
|
|
#include <types.h>
|
|
|
|
#include <interrupts.hpp>
|
|
#include <cpu.hpp>
|
|
|
|
namespace CrashHandler
|
|
{
|
|
extern void *EHIntFrames[INT_FRAMES_MAX];
|
|
|
|
void EHPrint(const char *Format, ...);
|
|
void Handle(void *Data);
|
|
}
|
|
|
|
#endif // !__FENNIX_KERNEL_CRASH_HANDELR_H__
|