HyperDbg Debugger
Loading...
Searching...
No Matches
DpcRoutines.h File Reference

Definition for DPC functions. More...

Go to the source code of this file.

Functions

BOOLEAN DpcRoutineTestPmu (KDPC *Dpc, PVOID DeferredContext, PVOID SystemArgument1, PVOID SystemArgument2)
 Broadcast enabling LBR.

Detailed Description

Definition for DPC functions.

Author
Sina Karvandi (sina@.nosp@m.hype.nosp@m.rdbg..nosp@m.org)
Version
0.21
Date
2026-06-22

Function Documentation

◆ DpcRoutineTestPmu()

BOOLEAN DpcRoutineTestPmu ( KDPC * Dpc,
PVOID DeferredContext,
PVOID SystemArgument1,
PVOID SystemArgument2 )

Broadcast enabling LBR.

Parameters
Dpc
DeferredContext
SystemArgument1
SystemArgument2
Returns
BOOLEAN
25{
26 UNREFERENCED_PARAMETER(Dpc);
27 UNREFERENCED_PARAMETER(DeferredContext);
28
29 // ------------------------------------------------------------------------------
30 // Synchronize the end of this routine with the caller
31 //
32 PlatformBroadcastSynchronizeEndOfRoutine(SystemArgument1, SystemArgument2);
33
34 return TRUE;
35}
VOID PlatformBroadcastSynchronizeEndOfRoutine(PVOID SystemArgument1, PVOID SystemArgument2)
This function synchronize the function execution for a single core.
Definition PlatformBroadcast.c:24
#define TRUE
Definition BasicTypes.h:114