KernRequestSharedMutex: Difference between revisions
Appearance
m Ak120 moved page OS2 API:KEE:KernRequestSharedMutex to KernRequestSharedMutex |
No edit summary |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
Request a mutex in shared mode. Multiple threads may own the lock. If a thread already owns the lock, then the calling thread will block uninteruptibly. The block id is the address of this mutex. Use [[KernTryRequestSharedMutex]] to attempt to acquire the mutexlock without blocking. | |||
==Synopsis== | ==Synopsis== | ||
VOID APIENTRY KernRequestSharedMutex(KEEMutexLock* ml); | VOID APIENTRY KernRequestSharedMutex(KEEMutexLock* ml); | ||
==Parameters== | ==Parameters== | ||
; ''ml'' (KEEMutexLock*) - input : Pointer to a mutexlock structure. | |||
[[Category: | [[Category:KEE]] |
Latest revision as of 03:43, 28 May 2025
Request a mutex in shared mode. Multiple threads may own the lock. If a thread already owns the lock, then the calling thread will block uninteruptibly. The block id is the address of this mutex. Use KernTryRequestSharedMutex to attempt to acquire the mutexlock without blocking.
Synopsis
VOID APIENTRY KernRequestSharedMutex(KEEMutexLock* ml);
Parameters
- ml (KEEMutexLock*) - input
- Pointer to a mutexlock structure.