matos/core/stack.h

9 lines
204 B
C
Raw Normal View History

2018-11-16 14:47:21 +01:00
#pragma once
#include "multiboot.h"
2018-11-16 14:47:21 +01:00
2020-04-23 00:49:09 +02:00
#include "types.h"
extern vaddr_t _stack_bottom;
extern vaddr_t _stack_top;
2018-11-16 14:47:21 +01:00
void printStackTrace(unsigned int maxFrame);
void stackSymbolSetup(multiboot_info_t *mbi);