From: short <> Date: Thu, 27 Mar 2003 16:13:44 +0000 (+0000) Subject: +ExGetExclusiveWaiterCount() X-Git-Tag: captive-0_2~25 X-Git-Url: http://git.jankratochvil.net/?p=reactos.git;a=commitdiff_plain;h=96a067e78df83e12aa5603cbe9d637a791391958 +ExGetExclusiveWaiterCount() +ExGetSharedWaiterCount() +ExReinitializeResourceLite() --- diff --git a/ntoskrnl/ex/resource.c b/ntoskrnl/ex/resource.c index 81eb0c1..9274c44 100644 --- a/ntoskrnl/ex/resource.c +++ b/ntoskrnl/ex/resource.c @@ -461,6 +461,8 @@ ExDisableResourceBoostLite ( Resource->Flag |= ResourceDisableBoost; } +#endif /* LIBCAPTIVE */ + ULONG STDCALL ExGetExclusiveWaiterCount ( @@ -470,7 +472,6 @@ ExGetExclusiveWaiterCount ( return(Resource->NumberOfExclusiveWaiters); } -#endif /* LIBCAPTIVE */ BOOLEAN STDCALL @@ -580,7 +581,6 @@ ExDeleteResourceLite ( return(STATUS_SUCCESS);; } -#ifndef LIBCAPTIVE ULONG STDCALL @@ -591,6 +591,8 @@ ExGetSharedWaiterCount ( return(Resource->NumberOfSharedWaiters); } +#ifndef LIBCAPTIVE + NTSTATUS STDCALL ExInitializeResource ( @@ -678,7 +680,6 @@ ExIsResourceAcquiredSharedLite ( return(0); } -#ifndef LIBCAPTIVE VOID STDCALL @@ -704,7 +705,6 @@ ExReinitializeResourceLite ( Resource->OwnerThreads[1].a.OwnerCount=0; } -#endif /* LIBCAPTIVE */ VOID FASTCALL