|
Size: 888
Comment: update content - standard return value
|
Size: 880
Comment: minor change
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 27: | Line 27: |
| /!\ {i} It is an error to unlock a mutex that has not been locked by the current thread, and doing so results in undefined behavior. | It is an error to unlock a mutex that has not been locked by the current thread, and doing so results in undefined behavior. |
DRAFT |
SDL_mutexV
Use this function to unlock the mutex.
Syntax
int SDL_mutexV(SDL_mutex* mutex)
Function Parameters
mutex |
a pointer to the SDL_mutex structure to be unlocked |
Return Value
Returns 0 on success or a negative error code on failure; call SDL_GetError() for more information.
Code Examples
You can add your code example here
Remarks
It is an error to unlock a mutex that has not been locked by the current thread, and doing so results in undefined behavior.
green
???
