added no_stack_protector attribute to functions

This commit is contained in:
Alex
2022-10-16 21:25:11 +03:00
parent 5f03d287d3
commit d35b4de246
3 changed files with 5 additions and 5 deletions

View File

@ -16,7 +16,7 @@
#include "../crashhandler.hpp"
#include "../kernel.h"
extern "C" void ExceptionHandler(void *Data) { CrashHandler::Handle(Data); }
extern "C" __attribute__((no_stack_protector)) void ExceptionHandler(void *Data) { CrashHandler::Handle(Data); }
namespace Interrupts
{