table of contents
SDL_HINT_WINDOWS_FORCE_MUTEX_CRITICAL_SECTIONS(3) | SDL3 FUNCTIONS | SDL_HINT_WINDOWS_FORCE_MUTEX_CRITICAL_SECTIONS(3) |
NAME¶
SDL_HINT_WINDOWS_FORCE_MUTEX_CRITICAL_SECTIONS - A variable controlling whether SDL uses Critical Sections for mutexes on Windows.
HEADER FILE¶
Defined in SDL3/SDL_hints.h
SYNOPSIS¶
#include "SDL3/SDL.h"
#define SDL_HINT_WINDOWS_FORCE_MUTEX_CRITICAL_SECTIONS SDL_WINDOWS_FORCE_MUTEX_CRITICAL_SECTIONS"
DESCRIPTION¶
On Windows 7 and newer, Slim Reader/Writer Locks are available. They offer better performance, allocate no kernel resources and use less memory. SDL will fall back to Critical Sections on older OS versions or if forced to by this hint.
The variable can be set to the following values:
• "0": Use SRW Locks when available, otherwise
fall back to Critical
Sections. (default)
• "1": Force the use of Critical Sections in all cases.
This hint should be set before SDL is initialized.
AVAILABILITY¶
This hint is available since SDL 3.0.0.
SDL 3.1.2 | Simple Directmedia Layer |