Skip to content

Commit

Permalink
Merge pull request #2040 from Sonicadvance1/fix_vsyscall
Browse files Browse the repository at this point in the history
VDSO: Fix vsyscall
  • Loading branch information
Sonicadvance1 committed Sep 29, 2022
2 parents 1799d4c + 1596843 commit 5cf5940
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions ThunkLibs/libVDSO/libVDSO_Guest.cpp
Expand Up @@ -32,14 +32,7 @@ __attribute__((naked))
int __kernel_vsyscall() {
asm volatile(R"(
.intel_syntax noprefix
push ecx;
push edx;
push ebp;
mov ebp, ecx;
int 0x80;
pop ebp;
pop edx;
pop ecx;
ret;
.att_syntax prefix
)"
Expand Down

0 comments on commit 5cf5940

Please sign in to comment.