DRAFT |
SDL_SemPost
Use this function to atomically (?? automatically ??) increase the semaphore's count (not blocking).
Contents
Syntax
int SDL_SemPost(SDL_sem* sem)
Function Parameters
sem |
a pointer to the SDL_sem structure to be affected |
Return Value
Returns 0 on success, or -1 on failure; call SDL_GetError() for more information.
Code Examples
You can add your code example here
Remarks
You can add useful comments here
