KernRequestSharedMutex: Difference between revisions
Appearance
m Ak120 moved page OS2 API:KEE:KernRequestSharedMutex to KernRequestSharedMutex |
mNo edit summary |
||
Line 3: | Line 3: | ||
==Description== | ==Description== | ||
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. | 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. | ||
==Parameters== | ==Parameters== | ||
Line 9: | Line 9: | ||
[[Category: | [[Category:KEE] |
Revision as of 12:30, 27 February 2017
Synopsis
VOID APIENTRY KernRequestSharedMutex(KEEMutexLock* ml);
Description
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.
Parameters
ml: Pointer to a mutexlock structure.
[[Category:KEE]