Implement process clone trampoline
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m10s
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m10s
This commit is contained in:
7
libprocess/amd64/clone_tramp.S
Normal file
7
libprocess/amd64/clone_tramp.S
Normal file
@@ -0,0 +1,7 @@
|
||||
.global _clone_tramp
|
||||
_clone_tramp:
|
||||
xorq %rbp, %rbp
|
||||
movq %rsp, %rbp
|
||||
andq $-16, %rsp
|
||||
|
||||
callq _clone_tramp1
|
||||
Reference in New Issue
Block a user