Provided by: libsdl3-doc_3.2.8+ds-1_all bug

NAME

       SDL_LockRWLockForReading - Lock the read/write lock for _read only_ operations.

HEADER FILE

       Defined in SDL3/SDL_mutex.h

SYNOPSIS

       #include "SDL3/SDL.h"

       void SDL_LockRWLockForReading(SDL_RWLock *rwlock);

DESCRIPTION

       This  will block until the rwlock is available, which is to say it is not locked for writing by any other
       thread. Of all threads waiting to lock the rwlock, all may do so at the same time as  long  as  they  are
       requesting  read-only access; if a thread wants to lock for writing, only one may do so at a time, and no
       other threads, read-only or not, may hold the lock at the same time.

       It is legal for the owning thread to lock an already-locked rwlock for reading. 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 rwlock").

       Note that locking for writing is not recursive (this is only available to read-only locks).

       It is illegal to request a read-only lock from a thread that already  holds  the  write  lock.  Doing  so
       results in undefined behavior. Unlock the write lock before requesting a read-only lock. (But, of course,
       if you have the write lock, you don't need further locks to read in any case.)

       This  function does not fail; if rwlock is NULL, it will return immediately having locked nothing. If the
       rwlock is valid, this function will always block until it can lock the mutex, and return with it locked.

FUNCTION PARAMETERS

       rwlock the read/write lock to lock.

AVAILABILITY

       This function is available since SDL 3.2.0.

SEE ALSO

       (3), SDL_LockRWLockForWriting(3), (3), SDL_TryLockRWLockForReading(3), (3), SDL_UnlockRWLock(3)

Simple Directmedia Layer                            SDL 3.2.8                        SDL_LockRWLockForReading(3)