mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
703 B
52 lines
703 B
#ifndef _MMTESTS_H_INCLUDED_
|
|
#define _MMTESTS_H_INCLUDED_
|
|
|
|
VOID MmTestProbeLockForEverStress (
|
|
IN PVOID IrpAddress
|
|
);
|
|
|
|
VOID MmTestNameToAddressStress (
|
|
IN PVOID IrpAddress
|
|
);
|
|
|
|
VOID MmTestEccBadStress (
|
|
IN PVOID IrpAddress
|
|
);
|
|
|
|
VOID
|
|
TdSysPagedPoolMaxTest(
|
|
IN PVOID IrpAddress
|
|
);
|
|
|
|
VOID
|
|
TdSysPagedPoolTotalTest(
|
|
IN PVOID IrpAddress
|
|
);
|
|
|
|
VOID
|
|
TdNonPagedPoolMaxTest(
|
|
IN PVOID IrpAddress
|
|
);
|
|
|
|
VOID
|
|
TdNonPagedPoolTotalTest(
|
|
IN PVOID IrpAddress
|
|
);
|
|
|
|
VOID
|
|
TdFreeSystemPtesTest(
|
|
IN PVOID IrpAddress
|
|
);
|
|
|
|
VOID
|
|
StressPoolFlag (
|
|
PVOID NotUsed
|
|
);
|
|
|
|
VOID
|
|
StressPoolTagTableExtension (
|
|
PVOID NotUsed
|
|
);
|
|
|
|
#endif // #ifndef _MMTESTS_H_INCLUDED_
|
|
|