[Zion] Access the KernelStackManager through the VMM.
This commit is contained in:
parent
c5b9d20c7e
commit
07e6e3028d
11 changed files with 46 additions and 38 deletions
|
|
@ -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; }
|
||||
|
|
|
|||
|
|
@ -4,6 +4,6 @@
|
|||
|
||||
void InitGdt();
|
||||
|
||||
void SetIst1(uint64_t* ist1);
|
||||
void SetIst1(uint64_t ist1);
|
||||
|
||||
void SetRsp0(uint64_t rsp0);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue