Paul Gofman : ntoskrnl.exe: Implement KeSetSystemAffinityThread() function.

Alexandre Julliard julliard at winehq.org
Tue May 26 17:17:07 CDT 2020


Module: wine
Branch: master
Commit: 631227563bf52b2f30a576286b8d8299f2f54ed4
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=631227563bf52b2f30a576286b8d8299f2f54ed4

Author: Paul Gofman <pgofman at codeweavers.com>
Date:   Tue May 26 13:05:08 2020 +0300

ntoskrnl.exe: Implement KeSetSystemAffinityThread() function.

Signed-off-by: Paul Gofman <pgofman at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/ntoskrnl.exe/ntoskrnl.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/ntoskrnl.exe/ntoskrnl.c b/dlls/ntoskrnl.exe/ntoskrnl.c
index dc6bbe866c..a0657b52c5 100644
--- a/dlls/ntoskrnl.exe/ntoskrnl.c
+++ b/dlls/ntoskrnl.exe/ntoskrnl.c
@@ -2450,9 +2450,9 @@ KPRIORITY WINAPI KeSetPriorityThread( PKTHREAD Thread, KPRIORITY Priority )
 /***********************************************************************
  *           KeSetSystemAffinityThread   (NTOSKRNL.EXE.@)
  */
-VOID WINAPI KeSetSystemAffinityThread(KAFFINITY Affinity)
+VOID WINAPI KeSetSystemAffinityThread(KAFFINITY affinity)
 {
-    FIXME("(%lx) stub\n", Affinity);
+    KeSetSystemAffinityThreadEx(affinity);
 }
 
 KAFFINITY WINAPI KeSetSystemAffinityThreadEx(KAFFINITY affinity)




More information about the wine-cvs mailing list