Jump to content

KernRequestSharedMutex

From EDM2
Revision as of 05:07, 6 June 2016 by Martini (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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.