Description of the 'interlocked_increment' function in HyperDbg Scripts
interlocked_increment
interlocked_increment( *Variable );
[*Variable (Addend)]
A reference to a variable (most of the time a global variable) to be added by 1.
1
Increments (increases by one) the value of the specified global variable as an atomic operation.
The function returns the resulting incremented value.
Result = interlocked_increment(.my_gloabl_counter);
Increments a global variable by 1 and saves the results into a local variable named Result.
Result
None
interlocked_compare_exchangearrow-up-right
interlocked_decrementarrow-up-right
interlocked_exchangearrow-up-right
interlocked_exchange_addarrow-up-right
Last updated 2 years ago