From 55300ebbf297bbc63b3c0d5155528fd9f731c605 Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Mon, 28 Apr 2003 14:32:36 +0000 Subject: [PATCH] Added DbgPrint-notification for stubbed function KeSetAffinityThread() svn path=/trunk/; revision=4611 --- reactos/ntoskrnl/ps/thread.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/reactos/ntoskrnl/ps/thread.c b/reactos/ntoskrnl/ps/thread.c index f28bf86bd86..86981bf5a18 100644 --- a/reactos/ntoskrnl/ps/thread.c +++ b/reactos/ntoskrnl/ps/thread.c @@ -1,4 +1,4 @@ -/* $Id: thread.c,v 1.109 2003/04/25 18:37:44 fireball Exp $ +/* $Id: thread.c,v 1.110 2003/04/28 14:32:36 fireball Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -511,6 +511,7 @@ KeSetAffinityThread(PKTHREAD Thread, * Sets thread's affinity */ { + DPRINT1("KeSetAffinityThread() is a stub returning STATUS_SUCCESS"); return STATUS_SUCCESS; // FIXME: Use function below //return ZwSetInformationThread(handle, ThreadAffinityMask,,sizeof(KAFFINITY)); }