spinlock_unlock
Description of the 'spinlock_unlock' function in HyperDbg Scripts
Last updated
Description of the 'spinlock_unlock' function in HyperDbg Scripts
Last updated
spinlock_unlock
spinlock_unlock( *Variable );
[*Variable (Lock)]
A reference to a variable (most of the time a global variable), used as a . The lock can be locked by .
Unlocks the spinlock referred to by lock.
None
spinlock_unlock(&.my_lock_var);
unlocks the spinlock of a global variable (lock) which is called .my_lock
. Note that you should use the unary operator &
to pass a reference of the global variable to this function.
None