Jump to content

DosAcquireSpinLock: Difference between revisions

From EDM2
Created page with "==Syntax== DosAcquireSpinLock(HSPINLOCK Handle); Category:DevHlps"
 
Erdmann (talk | contribs)
No edit summary
 
(7 intermediate revisions by 3 users not shown)
Line 1: Line 1:
Acquire a spinlock for multiprocessor serialization
==Syntax==
==Syntax==
  DosAcquireSpinLock(HSPINLOCK Handle);
  VOID APIENTRY DosAcquireSpinLock ([[HSPINLOCK]] Handle)
 
==Parameter==
;Handle ([[HSPINLOCK]]):Handle to a spin lock
 
==Remarks==
DosAcquireSpinLock is passed a handle which was returned by DosCreateSpinLock When control is returned to the requester, the spin lock has been acquired and interrupts are disabled. A call to DosReleaseSpinLock must follow very shortly. Spin locks can be nested.
 
==Related Functions==
*[[DosCreateSpinLock]]
*[[DosFreeSpinLock]]
*[[DosReleaseSpinLock]]


[[Category:DevHlps]]
[[Category:Dos]]

Latest revision as of 10:11, 19 July 2023

Acquire a spinlock for multiprocessor serialization

Syntax

VOID APIENTRY DosAcquireSpinLock (HSPINLOCK Handle)

Parameter

Handle (HSPINLOCK)
Handle to a spin lock

Remarks

DosAcquireSpinLock is passed a handle which was returned by DosCreateSpinLock When control is returned to the requester, the spin lock has been acquired and interrupts are disabled. A call to DosReleaseSpinLock must follow very shortly. Spin locks can be nested.

Related Functions