Function SDL_SignalCondition

pub unsafe extern "C" fn SDL_SignalCondition(cond: *mut SDL_Condition)
Available on crate feature dep_sdl3 only.
Expand description

Restart one of the threads that are waiting on the condition variable.

§Parameters

  • cond: the condition variable to signal.

§Thread safety

It is safe to call this function from any thread.

§Availability

This function is available since SDL 3.2.0.

§See also