ntoskrnl.exe: Add KeRevertToUserAffinityThread stub.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
38c825598f
commit
4498648ec1
|
@ -2276,6 +2276,16 @@ VOID WINAPI KeSetSystemAffinityThread(KAFFINITY Affinity)
|
|||
FIXME("(%lx) stub\n", Affinity);
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* KeRevertToUserAffinityThread (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
void WINAPI KeRevertToUserAffinityThread(void)
|
||||
{
|
||||
FIXME("() stub\n");
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* IoRegisterFileSystem (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
|
|
|
@ -611,7 +611,7 @@
|
|||
@ stub KeRemoveSystemServiceTable
|
||||
@ stdcall KeResetEvent(ptr)
|
||||
@ stub KeRestoreFloatingPointState
|
||||
@ stub KeRevertToUserAffinityThread
|
||||
@ stdcall KeRevertToUserAffinityThread()
|
||||
@ stub KeRundownQueue
|
||||
@ stub KeSaveFloatingPointState
|
||||
@ stub KeSaveStateForHibernate
|
||||
|
|
|
@ -1531,6 +1531,7 @@ LONG WINAPI KeReleaseSemaphore(PRKSEMAPHORE,KPRIORITY,LONG,BOOLEAN);
|
|||
void WINAPI KeReleaseSpinLock(KSPIN_LOCK*,KIRQL);
|
||||
void WINAPI KeReleaseSpinLockFromDpcLevel(KSPIN_LOCK*);
|
||||
LONG WINAPI KeResetEvent(PRKEVENT);
|
||||
void WINAPI KeRevertToUserAffinityThread(void);
|
||||
LONG WINAPI KeSetEvent(PRKEVENT,KPRIORITY,BOOLEAN);
|
||||
KPRIORITY WINAPI KeSetPriorityThread(PKTHREAD,KPRIORITY);
|
||||
void WINAPI KeSetSystemAffinityThread(KAFFINITY);
|
||||
|
|
Loading…
Reference in New Issue