Jump to content

KernTryRequestSharedMutex: Difference between revisions

From EDM2
No edit summary
No edit summary
Line 1: Line 1:
Try to acquire a shared mutexlock. If this fails, 0 is returned, if it succeeds, the mutexlock is acquired, and 1 is returned.
==Synopsis==
==Synopsis==
INT APIENTRY KernTryRequestSharedMutex(KEEMutexLock* ml);
INT APIENTRY KernTryRequestSharedMutex(KEEMutexLock* ml);
 
==Description==
Try to acquire a shared mutexlock. If this fails, 0 is returned, if it succeeds, the mutexlock is acquired, and 1 is returned.


==Parameters==
==Parameters==
'''ml:''' Pointer to a mutexlock structure.  
; ml : Pointer to a mutexlock structure.  


[[Category:Kern]]
[[Category:KEE]]

Revision as of 22:57, 9 June 2017

Try to acquire a shared mutexlock. If this fails, 0 is returned, if it succeeds, the mutexlock is acquired, and 1 is returned.

Synopsis

INT APIENTRY KernTryRequestSharedMutex(KEEMutexLock* ml);

Parameters

ml
Pointer to a mutexlock structure.