Uses of Record Class
club.doki7.sdl3.handle.SDL_Mutex
Packages that use SDL_Mutex
-
Uses of SDL_Mutex in club.doki7.sdl3
Methods in club.doki7.sdl3 that return SDL_MutexMethods in club.doki7.sdl3 with parameters of type SDL_MutexModifier and TypeMethodDescriptionvoid
SDL3.destroyMutex
(@Nullable SDL_Mutex mutex) Destroy a mutex created with SDL_CreateMutex().void
Lock the mutex.boolean
SDL3.tryLockMutex
(@Nullable SDL_Mutex mutex) Try to lock a mutex without blocking.void
SDL3.unlockMutex
(@Nullable SDL_Mutex mutex) Unlock the mutex.void
SDL3.waitCondition
(@Nullable SDL_Condition cond, @Nullable SDL_Mutex mutex) Wait until a condition variable is signaled.boolean
SDL3.waitConditionTimeout
(@Nullable SDL_Condition cond, @Nullable SDL_Mutex mutex, int timeoutMS) Wait until a condition variable is signaled or a certain time has passed. -
Uses of SDL_Mutex in club.doki7.sdl3.handle
Classes in club.doki7.sdl3.handle that implement interfaces with type arguments of type SDL_MutexModifier and TypeClassDescriptionstatic final record
Represents a pointer toSDL_Mutex
handle(s) in native memory.Methods in club.doki7.sdl3.handle that return SDL_MutexModifier and TypeMethodDescription@Nullable SDL_Mutex
SDL_Mutex.Ptr.read()
@Nullable SDL_Mutex
SDL_Mutex.Ptr.read
(long index) Methods in club.doki7.sdl3.handle that return types with arguments of type SDL_MutexMethods in club.doki7.sdl3.handle with parameters of type SDL_Mutex