microsleep
Description of the 'microsleep' function in HyperDbg Scripts
Function
microsleep
Syntax
microsleep( MicroSecond );
Parameters
[MicroSecond]
The time to sleep (pause the execution) in microseconds.
Description
Sleeps (pauses the execution) the core execution for a specified duration in microseconds..
Return value
None
Examples
The following code uses the microsleep
function to pause execution for 100 microseconds each time the hook is triggered at the target function.
Remarks
This function pauses only the core on which it is executed. For example, if used within an event, it will pause only the executing core, not any others.
Related
None
Last updated