Jump to content

KernRequestSharedMutex: Difference between revisions

From EDM2
Created page with "==Synopsis== VOID APIENTRY KernRequestSharedMutex(KEEMutexLock* ml); ==Description== Request a mutex in shared mode. Multiple threads may own the lock. If a thread already ow..."
 
Ak120 (talk | contribs)
(No difference)

Revision as of 12:28, 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.