DosReleaseSpinLock: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
==Syntax== | ==Syntax== | ||
VOID APIENTRY DosReleaseSpinLock([[HSPINLOCK]] Handle); | VOID APIENTRY DosReleaseSpinLock([[HSPINLOCK]] Handle); | ||
==Remarks== | |||
DosReleaseSpinLock is passed a handle which was returned by DosCreateSpinLock When control is returned to the requester, the spin lock is released and interrupts are enabled. A DosAcquireSpinLock must have been previously issued. | |||
==Related Functions== | ==Related Functions== |
Revision as of 10:05, 19 July 2023
Release a spinlock for multiprocessor serialization
Syntax
VOID APIENTRY DosReleaseSpinLock(HSPINLOCK Handle);
Remarks
DosReleaseSpinLock is passed a handle which was returned by DosCreateSpinLock When control is returned to the requester, the spin lock is released and interrupts are enabled. A DosAcquireSpinLock must have been previously issued.