mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Added DbgPrint-notification for stubbed function KeSetAffinityThread()
svn path=/trunk/; revision=4611
This commit is contained in:
parent
331899f621
commit
55300ebbf2
1 changed files with 2 additions and 1 deletions
|
@ -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,<pointer to affinity mask>,sizeof(KAFFINITY));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue