SayoriOS  0.3.3
unwind.h
1 #pragma once
2 
3 #include "common.h"
4 
5 typedef struct stackframe {
6  struct stackframe* ebp;
7  uint32_t eip;
8 } stackframe;
9 
10 #ifndef RELEASE
11 void unwind_stack(uint32_t MaxFrames);
12 #else
13 #define unwind_stack(_)
14 #endif
Основные определения ядра