sdlLockMutex function

int sdlLockMutex(
  1. Pointer<NativeType> arg0
)

Lock the mutex.

This will block until the mutex is available, which is to say it is in the unlocked state and the OS has chosen the caller as the next thread to lock it. Of all threads waiting to lock the mutex, only one may do so at a time.

It is legal for the owning thread to lock an already-locked mutex. It must unlock it the same number of times before it is actually made available for other threads in the system (this is known as a "recursive mutex").

\param mutex the mutex to lock \return 0, or -1 on error.

\since This function is available since SDL 2.0.0.

extern DECLSPEC int SDLCALL SDL_LockMutex(SDL_mutex * mutex) SDL_ACQUIRE(mutex)

Implementation

int sdlLockMutex(Pointer<NativeType> arg0) {
  final sdlLockMutexLookupFunction = libSdl2.lookupFunction<
      Int32 Function(Pointer<NativeType> arg0),
      int Function(Pointer<NativeType> arg0)>('SDL_LockMutex');
  return sdlLockMutexLookupFunction(arg0);
}