You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
606 B
14 lines
606 B
--- a/patches/ntdll-RtlCreateUserThread/0001-ntdll-Refactor-RtlCreateUserThread-into-NtCreateThre.patch
|
|
+++ b/patches/ntdll-RtlCreateUserThread/0001-ntdll-Refactor-RtlCreateUserThread-into-NtCreateThre.patch
|
|
@@ -222,8 +222,8 @@
|
|
+ context.R0 = (DWORD)entry;
|
|
+ context.R1 = (DWORD)arg;
|
|
+#elif defined(__aarch64__)
|
|
-+ context.u.s.X0 = (DWORD_PTR)entry;
|
|
-+ context.u.s.X1 = (DWORD_PTR)arg;
|
|
++ context.u.X0 = (DWORD_PTR)entry;
|
|
++ context.u.X1 = (DWORD_PTR)arg;
|
|
+#elif defined(__powerpc__)
|
|
+ context.Gpr3 = (DWORD)entry;
|
|
+ context.Gpr4 = (DWORD)arg;
|