KernAcquireSpinLock: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
(One intermediate revision by one other user not shown) | |||
Line 2: | Line 2: | ||
==Synopsis== | ==Synopsis== | ||
VOID APIENTRY KernAcquireSpinLock(KEESpinLock* sl); | VOID APIENTRY KernAcquireSpinLock (KEESpinLock* sl); | ||
==Parameters== | ==Parameters== | ||
;''sl'' (KEESpinLock) - input: Pointer to an initialized spinlock structure | |||
[[Category:KEE]] | [[Category:KEE]] |
Latest revision as of 02:58, 28 May 2025
Try to acquire the spinlock. If another processor already owns the spinlock, the caller will busy wait until the other owner releases the lock, then acquires the lock immediately.
Synopsis
VOID APIENTRY KernAcquireSpinLock (KEESpinLock* sl);
Parameters
- sl (KEESpinLock) - input
- Pointer to an initialized spinlock structure