Tao.Sdl SDK Documentation

Sdl.SDL_CondWait Method 

Wait on the condition variable, unlocking the provided mutex. The mutex must be locked before entering this function! Returns 0 when it is signaled, or -1 on error.

[Visual Basic]
Public Shared Function SDL_CondWait( _
   ByVal cond As IntPtr, _
   ByVal mut As IntPtr _
) As Integer
[C#]
public static int SDL_CondWait(
   IntPtr cond,
   IntPtr mut
);

Return Value

Wait on the condition variable, unlocking the provided mutex. The mutex must be locked before entering this function! Returns 0 when it is signaled, or -1 on error.

Remarks

Binds to C-function call in SDL_mutex.h:

extern DECLSPEC int SDLCALL SDL_CondWait(SDL_cond *cond, SDL_mutex *mut)

See Also

Sdl Class | Tao.Sdl Namespace