table of contents
other versions
- testing 3.2.10+ds-1
- unstable 3.2.10+ds-1
- experimental 3.2.16+ds-1
SDL_CreateAsyncIOQueue(3) | SDL3 FUNCTIONS | SDL_CreateAsyncIOQueue(3) |
NAME¶
SDL_CreateAsyncIOQueue - Create a task queue for tracking multiple I/O operations.
SYNOPSIS¶
#include <SDL3/SDL_asyncio.h>
SDL_AsyncIOQueue * SDL_CreateAsyncIOQueue(void);
DESCRIPTION¶
Async I/O operations are assigned to a queue when started. The queue can be checked for completed tasks thereafter.
RETURN VALUE¶
Returns a new task queue object or NULL if there was an error; call SDL_GetError() for more information.
THREAD SAFETY¶
It is safe to call this function from any thread.
AVAILABILITY¶
This function is available since SDL 3.2.0.
SEE ALSO¶
SDL_DestroyAsyncIOQueue(3), SDL_GetAsyncIOResult(3), SDL_WaitAsyncIOResult(3)
SDL 3.2.16 | Simple Directmedia Layer |