ntoskrnl.exe: Implement ExAcquireSharedStarveExclusive().
Signed-off-by: Zebediah Figura <z.figura12@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
dcfc7ab165
commit
f0499323d8
|
@ -122,7 +122,7 @@
|
|||
@ stub DbgSetDebugFilterState
|
||||
@ stdcall ExAcquireResourceExclusiveLite(ptr long)
|
||||
@ stdcall ExAcquireResourceSharedLite(ptr long)
|
||||
@ stub ExAcquireSharedStarveExclusive
|
||||
@ stdcall ExAcquireSharedStarveExclusive(ptr long)
|
||||
@ stub ExAcquireSharedWaitForExclusive
|
||||
@ stub ExAllocateFromPagedLookasideList
|
||||
@ stdcall ExAllocatePool(long long)
|
||||
|
|
|
@ -880,3 +880,67 @@ BOOLEAN WINAPI ExAcquireResourceSharedLite( ERESOURCE *resource, BOOLEAN wait )
|
|||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* ExAcquireSharedStarveExclusive (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
BOOLEAN WINAPI ExAcquireSharedStarveExclusive( ERESOURCE *resource, BOOLEAN wait )
|
||||
{
|
||||
OWNER_ENTRY *entry;
|
||||
KIRQL irql;
|
||||
|
||||
TRACE("resource %p, wait %u.\n", resource, wait);
|
||||
|
||||
KeAcquireSpinLock( &resource->SpinLock, &irql );
|
||||
|
||||
entry = resource_get_shared_entry( resource, (ERESOURCE_THREAD)KeGetCurrentThread() );
|
||||
|
||||
if (resource->Flag & ResourceOwnedExclusive)
|
||||
{
|
||||
if (resource->OwnerEntry.OwnerThread == (ERESOURCE_THREAD)KeGetCurrentThread())
|
||||
{
|
||||
resource->ActiveEntries++;
|
||||
KeReleaseSpinLock( &resource->SpinLock, irql );
|
||||
return TRUE;
|
||||
}
|
||||
}
|
||||
/* We are starving exclusive waiters, but we cannot steal the resource out
|
||||
* from under an exclusive waiter who is about to acquire it. (Because of
|
||||
* locking, and because exclusive waiters are always waked first, this is
|
||||
* guaranteed to be the case if the resource is unowned and there are
|
||||
* exclusive waiters.) */
|
||||
else if (!(!resource->ActiveEntries && resource->NumberOfExclusiveWaiters))
|
||||
{
|
||||
entry->OwnerCount++;
|
||||
resource->ActiveEntries++;
|
||||
KeReleaseSpinLock( &resource->SpinLock, irql );
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
if (!wait)
|
||||
{
|
||||
KeReleaseSpinLock( &resource->SpinLock, irql );
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
if (!resource->SharedWaiters)
|
||||
{
|
||||
resource->SharedWaiters = heap_alloc( sizeof(*resource->SharedWaiters) );
|
||||
KeInitializeSemaphore( resource->SharedWaiters, 0, INT_MAX );
|
||||
}
|
||||
resource->NumberOfSharedWaiters++;
|
||||
|
||||
KeReleaseSpinLock( &resource->SpinLock, irql );
|
||||
|
||||
KeWaitForSingleObject( resource->SharedWaiters, Executive, KernelMode, FALSE, NULL );
|
||||
|
||||
KeAcquireSpinLock( &resource->SpinLock, &irql );
|
||||
|
||||
entry->OwnerCount++;
|
||||
resource->ActiveEntries++;
|
||||
resource->NumberOfSharedWaiters--;
|
||||
|
||||
KeReleaseSpinLock( &resource->SpinLock, irql );
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
|
|
@ -1514,6 +1514,7 @@ NTSTATUS WINAPI DbgQueryDebugFilterState(ULONG, ULONG);
|
|||
void WINAPI ExAcquireFastMutexUnsafe(PFAST_MUTEX);
|
||||
BOOLEAN WINAPI ExAcquireResourceExclusiveLite(ERESOURCE*,BOOLEAN);
|
||||
BOOLEAN WINAPI ExAcquireResourceSharedLite(ERESOURCE*,BOOLEAN);
|
||||
BOOLEAN WINAPI ExAcquireSharedStarveExclusive(ERESOURCE*,BOOLEAN);
|
||||
PVOID WINAPI ExAllocatePool(POOL_TYPE,SIZE_T);
|
||||
PVOID WINAPI ExAllocatePoolWithQuota(POOL_TYPE,SIZE_T);
|
||||
PVOID WINAPI ExAllocatePoolWithTag(POOL_TYPE,SIZE_T,ULONG);
|
||||
|
|
Loading…
Reference in New Issue