KernTryRequestExclusiveMutex: Difference between revisions
Appearance
Created page with "==Synopsis== INT APIENTRY KernTryRequestExclusiveMutex(KEEMutexLock* ml); ==Description== Attempt to acquire an exclusive owned mutex lock. Returns 0 if the request failed, e..." |
No edit summary |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
Attempt to acquire an exclusive owned mutex lock. Returns 0 if the request failed, else 1, and the mutexlock is acquired successfully. | |||
==Synopsis== | ==Synopsis== | ||
INT APIENTRY KernTryRequestExclusiveMutex(KEEMutexLock* ml); | INT APIENTRY KernTryRequestExclusiveMutex(KEEMutexLock* ml); | ||
==Parameters== | ==Parameters== | ||
; ''ml'' (KEEMutexLock*) - input: Pointer to an exclusive mutexlock. | |||
[[Category: | [[Category:KEE]] |
Latest revision as of 03:50, 28 May 2025
Attempt to acquire an exclusive owned mutex lock. Returns 0 if the request failed, else 1, and the mutexlock is acquired successfully.
Synopsis
INT APIENTRY KernTryRequestExclusiveMutex(KEEMutexLock* ml);
Parameters
- ml (KEEMutexLock*) - input
- Pointer to an exclusive mutexlock.