mirror of
https://github.com/reactos/reactos.git
synced 2025-06-03 16:30:26 +00:00
[WIN32K]
- revert r64197 and r64198 svn path=/trunk/; revision=64200
This commit is contained in:
parent
3274770f12
commit
086000893f
1 changed files with 1 additions and 3 deletions
|
@ -266,7 +266,6 @@ UserCreateThreadInfo(struct _ETHREAD *Thread)
|
|||
NTSTATUS Status = STATUS_SUCCESS;
|
||||
PTEB pTeb;
|
||||
LARGE_INTEGER LargeTickCount;
|
||||
OBJECT_ATTRIBUTES EventQueueObjAttr;
|
||||
|
||||
Process = Thread->ThreadsProcess;
|
||||
|
||||
|
@ -314,9 +313,8 @@ UserCreateThreadInfo(struct _ETHREAD *Thread)
|
|||
ptiCurrent->ppi->cThreads++;
|
||||
|
||||
ptiCurrent->hEventQueueClient = NULL;
|
||||
InitializeObjectAttributes(&EventQueueObjAttr, NULL, OBJ_KERNEL_HANDLE, NULL, NULL);
|
||||
Status = ZwCreateEvent(&ptiCurrent->hEventQueueClient, EVENT_ALL_ACCESS,
|
||||
&EventQueueObjAttr, SynchronizationEvent, FALSE);
|
||||
NULL, SynchronizationEvent, FALSE);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
goto error;
|
||||
|
|
Loading…
Reference in a new issue