[Zion] Access the KernelStackManager through the VMM.

This commit is contained in:
Drew Galbraith 2023-11-15 15:38:25 -08:00
parent c5b9d20c7e
commit 07e6e3028d
11 changed files with 46 additions and 38 deletions

View file

@ -93,8 +93,6 @@ void InitGdt() {
: "rax");
}
void SetIst1(uint64_t* ist1) {
gTaskStateSegment.ist1 = reinterpret_cast<uint64_t>(ist1);
}
void SetIst1(uint64_t ist1) { gTaskStateSegment.ist1 = ist1; }
void SetRsp0(uint64_t rsp0) { gTaskStateSegment.rsp0 = rsp0; }

View file

@ -4,6 +4,6 @@
void InitGdt();
void SetIst1(uint64_t* ist1);
void SetIst1(uint64_t ist1);
void SetRsp0(uint64_t rsp0);