mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 16:32:57 +00:00
implement NdisGetCurrentProcessorCounts
svn path=/trunk/; revision=32741
This commit is contained in:
parent
c9adea9855
commit
13ace0b7a8
2 changed files with 10 additions and 2 deletions
|
@ -507,6 +507,14 @@ typedef struct _NDIS40_MINIPORT_CHARACTERISTICS {
|
||||||
KeReleaseSpinLock(_Lock, OldIrql); \
|
KeReleaseSpinLock(_Lock, OldIrql); \
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* missing protypes */
|
||||||
|
VOID
|
||||||
|
NTAPI
|
||||||
|
ExGetCurrentProcessorCounts(
|
||||||
|
PULONG ThreadKernelTime,
|
||||||
|
PULONG TotalCpuTime,
|
||||||
|
PULONG ProcessorNumber);
|
||||||
|
|
||||||
#endif /* __NDISSYS_H */
|
#endif /* __NDISSYS_H */
|
||||||
|
|
||||||
/* EOF */
|
/* EOF */
|
||||||
|
|
|
@ -462,7 +462,7 @@ NdisConvertStringToAtmAddress(
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @implemented
|
||||||
*/
|
*/
|
||||||
VOID
|
VOID
|
||||||
EXPORT
|
EXPORT
|
||||||
|
@ -477,7 +477,7 @@ NdisGetCurrentProcessorCounts(
|
||||||
* NDIS 5.0
|
* NDIS 5.0
|
||||||
*/
|
*/
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED
|
ExGetCurrentProcessorCounts( (PULONG) pIdleCount, (PULONG) pKernelAndUser, (PULONG) pIndex);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue