mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
FsRtlNumberOfRunsInLargeMcb() implemented (simple).
svn path=/trunk/; revision=4600
This commit is contained in:
parent
676d1d9ebf
commit
52fa46b090
1 changed files with 6 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: mcb.c,v 1.8 2003/04/20 17:59:18 ea Exp $
|
||||
/* $Id: mcb.c,v 1.9 2003/04/27 16:25:25 ea Exp $
|
||||
*
|
||||
* reactos/ntoskrnl/fs/mcb.c
|
||||
*
|
||||
|
@ -144,8 +144,11 @@ FsRtlLookupMcbEntry (IN PMCB Mcb,
|
|||
ULONG STDCALL
|
||||
FsRtlNumberOfRunsInLargeMcb(IN PLARGE_MCB Mcb)
|
||||
{
|
||||
UNIMPLEMENTED
|
||||
return(0);
|
||||
ULONG NumberOfRuns;
|
||||
ExAcquireFastMutex (Mcb->FastMutex);
|
||||
NumberOfRuns=Mcb->PairCount;
|
||||
ExReleaseFastMutex (Mcb->FastMutex);
|
||||
return(NumberOfRuns);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue